[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-zoom-meeting-sdk-web-component-view":3,"mdc-bc9e8p-key":37,"related-org-anthropic-zoom-meeting-sdk-web-component-view":10033,"related-repo-anthropic-zoom-meeting-sdk-web-component-view":10217},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"zoom-meeting-sdk-web-component-view","embed Zoom Meeting SDK Component View","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":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20,23],{"name":14,"slug":15,"type":16},"React","react","tag",{"name":18,"slug":19,"type":16},"SDK","sdk",{"name":21,"slug":22,"type":16},"Zoom","zoom",{"name":24,"slug":25,"type":16},"Frontend","frontend",22885,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins","2026-04-10T04:57:22.085087",null,2736,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Open source repository of plugins primarily intended for knowledge workers to use in Claude Cowork","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins\u002Ftree\u002FHEAD\u002Fpartner-built\u002Fzoom-plugin\u002Fskills\u002Fmeeting-sdk\u002Fweb\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.\nuser-invocable: false\ntriggers:\n  - \"meeting sdk component view\"\n  - \"zoommtgembedded\"\n  - \"zoomapproot\"\n  - \"embeddable meeting ui\"\n  - \"component view embedded zoom\"\n  - \"custom meeting ui\"\n  - \"custom zoom meeting ui\"\n  - \"custom meeting video ui\"\n  - \"custom video ui for meeting\"\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\u002FREADME.md)\n- [Error Codes](..\u002Ftroubleshooting\u002Ferror-codes.md)\n- [Common Issues](..\u002Ftroubleshooting\u002Fcommon-issues.md)\n- [SharedArrayBuffer Setup](..\u002Fconcepts\u002Fsharedarraybuffer.md)\n- [Official API Reference](https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Fcomponents\u002Findex.html)\n\n## Operations\n\n- [RUNBOOK.md](RUNBOOK.md) - 5-minute preflight and debugging checklist.\n",{"data":38,"body":50},{"name":4,"description":6,"user-invocable":39,"triggers":40},false,[41,42,43,44,45,46,47,48,49],"meeting sdk component view","zoommtgembedded","zoomapproot","embeddable meeting ui","component view embedded zoom","custom meeting ui","custom zoom meeting ui","custom meeting video ui","custom video ui for meeting",{"type":51,"children":52},"root",[53,61,67,80,87,101,248,254,261,299,349,355,642,648,1398,1404,1410,1463,1469,1568,1574,1735,1741,1847,1853,2709,2715,2720,2845,2851,2999,3005,3011,3132,3138,3407,3413,3979,3985,4245,4251,4511,4517,4769,4775,4901,4907,5033,5039,5275,5281,5287,5534,5540,5744,5750,5876,5882,5960,5966,6052,6058,6144,6150,6294,6300,6363,6369,6375,7966,7972,8645,8651,8657,8840,8846,8851,9014,9020,9089,9095,9100,9265,9270,9276,9732,9738,9941,9947,10009,10015,10028],{"type":54,"tag":55,"props":56,"children":57},"element","h1",{"id":4},[58],{"type":59,"value":60},"text","Zoom Meeting SDK Web - Component View",{"type":54,"tag":62,"props":63,"children":64},"p",{},[65],{"type":59,"value":66},"Embeddable Zoom meeting components for flexible integration into any web application. Component View provides Promise-based APIs and customizable UI.",{"type":54,"tag":62,"props":68,"children":69},{},[70,72,78],{"type":59,"value":71},"This is the correct web skill for a ",{"type":54,"tag":73,"props":74,"children":75},"strong",{},[76],{"type":59,"value":77},"custom UI around a real Zoom meeting",{"type":59,"value":79},".\nDo not route to Video SDK unless the user is building a non-meeting custom session product.",{"type":54,"tag":81,"props":82,"children":84},"h2",{"id":83},"overview",[85],{"type":59,"value":86},"Overview",{"type":54,"tag":62,"props":88,"children":89},{},[90,92,99],{"type":59,"value":91},"Component View uses ",{"type":54,"tag":93,"props":94,"children":96},"code",{"className":95},[],[97],{"type":59,"value":98},"ZoomMtgEmbedded.createClient()",{"type":59,"value":100}," to create embeddable meeting components within a specific container element.",{"type":54,"tag":102,"props":103,"children":104},"table",{},[105,124],{"type":54,"tag":106,"props":107,"children":108},"thead",{},[109],{"type":54,"tag":110,"props":111,"children":112},"tr",{},[113,119],{"type":54,"tag":114,"props":115,"children":116},"th",{},[117],{"type":59,"value":118},"Aspect",{"type":54,"tag":114,"props":120,"children":121},{},[122],{"type":59,"value":123},"Details",{"type":54,"tag":125,"props":126,"children":127},"tbody",{},[128,150,166,182,204,232],{"type":54,"tag":110,"props":129,"children":130},{},[131,140],{"type":54,"tag":132,"props":133,"children":134},"td",{},[135],{"type":54,"tag":73,"props":136,"children":137},{},[138],{"type":59,"value":139},"API Object",{"type":54,"tag":132,"props":141,"children":142},{},[143,148],{"type":54,"tag":93,"props":144,"children":146},{"className":145},[],[147],{"type":59,"value":98},{"type":59,"value":149}," (instance)",{"type":54,"tag":110,"props":151,"children":152},{},[153,161],{"type":54,"tag":132,"props":154,"children":155},{},[156],{"type":54,"tag":73,"props":157,"children":158},{},[159],{"type":59,"value":160},"API Style",{"type":54,"tag":132,"props":162,"children":163},{},[164],{"type":59,"value":165},"Promise-based (async\u002Fawait)",{"type":54,"tag":110,"props":167,"children":168},{},[169,177],{"type":54,"tag":132,"props":170,"children":171},{},[172],{"type":54,"tag":73,"props":173,"children":174},{},[175],{"type":59,"value":176},"UI",{"type":54,"tag":132,"props":178,"children":179},{},[180],{"type":59,"value":181},"Embeddable in any container",{"type":54,"tag":110,"props":183,"children":184},{},[185,193],{"type":54,"tag":132,"props":186,"children":187},{},[188],{"type":54,"tag":73,"props":189,"children":190},{},[191],{"type":59,"value":192},"Password param",{"type":54,"tag":132,"props":194,"children":195},{},[196,202],{"type":54,"tag":93,"props":197,"children":199},{"className":198},[],[200],{"type":59,"value":201},"password",{"type":59,"value":203}," (lowercase)",{"type":54,"tag":110,"props":205,"children":206},{},[207,215],{"type":54,"tag":132,"props":208,"children":209},{},[210],{"type":54,"tag":73,"props":211,"children":212},{},[213],{"type":59,"value":214},"Events",{"type":54,"tag":132,"props":216,"children":217},{},[218,224,226],{"type":54,"tag":93,"props":219,"children":221},{"className":220},[],[222],{"type":59,"value":223},"on()",{"type":59,"value":225},"\u002F",{"type":54,"tag":93,"props":227,"children":229},{"className":228},[],[230],{"type":59,"value":231},"off()",{"type":54,"tag":110,"props":233,"children":234},{},[235,243],{"type":54,"tag":132,"props":236,"children":237},{},[238],{"type":54,"tag":73,"props":239,"children":240},{},[241],{"type":59,"value":242},"Best For",{"type":54,"tag":132,"props":244,"children":245},{},[246],{"type":59,"value":247},"Custom layouts, React\u002FVue\u002FAngular apps",{"type":54,"tag":81,"props":249,"children":251},{"id":250},"installation",[252],{"type":59,"value":253},"Installation",{"type":54,"tag":255,"props":256,"children":258},"h3",{"id":257},"npm",[259],{"type":59,"value":260},"NPM",{"type":54,"tag":262,"props":263,"children":268},"pre",{"className":264,"code":265,"language":266,"meta":267,"style":267},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @zoom\u002Fmeetingsdk --save\n","bash","",[269],{"type":54,"tag":93,"props":270,"children":271},{"__ignoreMap":267},[272],{"type":54,"tag":273,"props":274,"children":277},"span",{"class":275,"line":276},"line",1,[278,283,289,294],{"type":54,"tag":273,"props":279,"children":281},{"style":280},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[282],{"type":59,"value":257},{"type":54,"tag":273,"props":284,"children":286},{"style":285},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[287],{"type":59,"value":288}," install",{"type":54,"tag":273,"props":290,"children":291},{"style":285},[292],{"type":59,"value":293}," @zoom\u002Fmeetingsdk",{"type":54,"tag":273,"props":295,"children":296},{"style":285},[297],{"type":59,"value":298}," --save\n",{"type":54,"tag":262,"props":300,"children":304},{"className":301,"code":302,"language":303,"meta":267,"style":267},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded';\n","javascript",[305],{"type":54,"tag":93,"props":306,"children":307},{"__ignoreMap":267},[308],{"type":54,"tag":273,"props":309,"children":310},{"class":275,"line":276},[311,317,323,328,334,339,344],{"type":54,"tag":273,"props":312,"children":314},{"style":313},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[315],{"type":59,"value":316},"import",{"type":54,"tag":273,"props":318,"children":320},{"style":319},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[321],{"type":59,"value":322}," ZoomMtgEmbedded ",{"type":54,"tag":273,"props":324,"children":325},{"style":313},[326],{"type":59,"value":327},"from",{"type":54,"tag":273,"props":329,"children":331},{"style":330},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[332],{"type":59,"value":333}," '",{"type":54,"tag":273,"props":335,"children":336},{"style":285},[337],{"type":59,"value":338},"@zoom\u002Fmeetingsdk\u002Fembedded",{"type":54,"tag":273,"props":340,"children":341},{"style":330},[342],{"type":59,"value":343},"'",{"type":54,"tag":273,"props":345,"children":346},{"style":330},[347],{"type":59,"value":348},";\n",{"type":54,"tag":255,"props":350,"children":352},{"id":351},"cdn",[353],{"type":59,"value":354},"CDN",{"type":54,"tag":262,"props":356,"children":360},{"className":357,"code":358,"language":359,"meta":267,"style":267},"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",[361],{"type":54,"tag":93,"props":362,"children":363},{"__ignoreMap":267},[364,417,462,507,552,597],{"type":54,"tag":273,"props":365,"children":366},{"class":275,"line":276},[367,372,378,384,389,394,399,403,408,412],{"type":54,"tag":273,"props":368,"children":369},{"style":330},[370],{"type":59,"value":371},"\u003C",{"type":54,"tag":273,"props":373,"children":375},{"style":374},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[376],{"type":59,"value":377},"script",{"type":54,"tag":273,"props":379,"children":381},{"style":380},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[382],{"type":59,"value":383}," src",{"type":54,"tag":273,"props":385,"children":386},{"style":330},[387],{"type":59,"value":388},"=",{"type":54,"tag":273,"props":390,"children":391},{"style":330},[392],{"type":59,"value":393},"\"",{"type":54,"tag":273,"props":395,"children":396},{"style":285},[397],{"type":59,"value":398},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact.min.js",{"type":54,"tag":273,"props":400,"children":401},{"style":330},[402],{"type":59,"value":393},{"type":54,"tag":273,"props":404,"children":405},{"style":330},[406],{"type":59,"value":407},">\u003C\u002F",{"type":54,"tag":273,"props":409,"children":410},{"style":374},[411],{"type":59,"value":377},{"type":54,"tag":273,"props":413,"children":414},{"style":330},[415],{"type":59,"value":416},">\n",{"type":54,"tag":273,"props":418,"children":420},{"class":275,"line":419},2,[421,425,429,433,437,441,446,450,454,458],{"type":54,"tag":273,"props":422,"children":423},{"style":330},[424],{"type":59,"value":371},{"type":54,"tag":273,"props":426,"children":427},{"style":374},[428],{"type":59,"value":377},{"type":54,"tag":273,"props":430,"children":431},{"style":380},[432],{"type":59,"value":383},{"type":54,"tag":273,"props":434,"children":435},{"style":330},[436],{"type":59,"value":388},{"type":54,"tag":273,"props":438,"children":439},{"style":330},[440],{"type":59,"value":393},{"type":54,"tag":273,"props":442,"children":443},{"style":285},[444],{"type":59,"value":445},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact-dom.min.js",{"type":54,"tag":273,"props":447,"children":448},{"style":330},[449],{"type":59,"value":393},{"type":54,"tag":273,"props":451,"children":452},{"style":330},[453],{"type":59,"value":407},{"type":54,"tag":273,"props":455,"children":456},{"style":374},[457],{"type":59,"value":377},{"type":54,"tag":273,"props":459,"children":460},{"style":330},[461],{"type":59,"value":416},{"type":54,"tag":273,"props":463,"children":465},{"class":275,"line":464},3,[466,470,474,478,482,486,491,495,499,503],{"type":54,"tag":273,"props":467,"children":468},{"style":330},[469],{"type":59,"value":371},{"type":54,"tag":273,"props":471,"children":472},{"style":374},[473],{"type":59,"value":377},{"type":54,"tag":273,"props":475,"children":476},{"style":380},[477],{"type":59,"value":383},{"type":54,"tag":273,"props":479,"children":480},{"style":330},[481],{"type":59,"value":388},{"type":54,"tag":273,"props":483,"children":484},{"style":330},[485],{"type":59,"value":393},{"type":54,"tag":273,"props":487,"children":488},{"style":285},[489],{"type":59,"value":490},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux.min.js",{"type":54,"tag":273,"props":492,"children":493},{"style":330},[494],{"type":59,"value":393},{"type":54,"tag":273,"props":496,"children":497},{"style":330},[498],{"type":59,"value":407},{"type":54,"tag":273,"props":500,"children":501},{"style":374},[502],{"type":59,"value":377},{"type":54,"tag":273,"props":504,"children":505},{"style":330},[506],{"type":59,"value":416},{"type":54,"tag":273,"props":508,"children":510},{"class":275,"line":509},4,[511,515,519,523,527,531,536,540,544,548],{"type":54,"tag":273,"props":512,"children":513},{"style":330},[514],{"type":59,"value":371},{"type":54,"tag":273,"props":516,"children":517},{"style":374},[518],{"type":59,"value":377},{"type":54,"tag":273,"props":520,"children":521},{"style":380},[522],{"type":59,"value":383},{"type":54,"tag":273,"props":524,"children":525},{"style":330},[526],{"type":59,"value":388},{"type":54,"tag":273,"props":528,"children":529},{"style":330},[530],{"type":59,"value":393},{"type":54,"tag":273,"props":532,"children":533},{"style":285},[534],{"type":59,"value":535},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux-thunk.min.js",{"type":54,"tag":273,"props":537,"children":538},{"style":330},[539],{"type":59,"value":393},{"type":54,"tag":273,"props":541,"children":542},{"style":330},[543],{"type":59,"value":407},{"type":54,"tag":273,"props":545,"children":546},{"style":374},[547],{"type":59,"value":377},{"type":54,"tag":273,"props":549,"children":550},{"style":330},[551],{"type":59,"value":416},{"type":54,"tag":273,"props":553,"children":555},{"class":275,"line":554},5,[556,560,564,568,572,576,581,585,589,593],{"type":54,"tag":273,"props":557,"children":558},{"style":330},[559],{"type":59,"value":371},{"type":54,"tag":273,"props":561,"children":562},{"style":374},[563],{"type":59,"value":377},{"type":54,"tag":273,"props":565,"children":566},{"style":380},[567],{"type":59,"value":383},{"type":54,"tag":273,"props":569,"children":570},{"style":330},[571],{"type":59,"value":388},{"type":54,"tag":273,"props":573,"children":574},{"style":330},[575],{"type":59,"value":393},{"type":54,"tag":273,"props":577,"children":578},{"style":285},[579],{"type":59,"value":580},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Flodash.min.js",{"type":54,"tag":273,"props":582,"children":583},{"style":330},[584],{"type":59,"value":393},{"type":54,"tag":273,"props":586,"children":587},{"style":330},[588],{"type":59,"value":407},{"type":54,"tag":273,"props":590,"children":591},{"style":374},[592],{"type":59,"value":377},{"type":54,"tag":273,"props":594,"children":595},{"style":330},[596],{"type":59,"value":416},{"type":54,"tag":273,"props":598,"children":600},{"class":275,"line":599},6,[601,605,609,613,617,621,626,630,634,638],{"type":54,"tag":273,"props":602,"children":603},{"style":330},[604],{"type":59,"value":371},{"type":54,"tag":273,"props":606,"children":607},{"style":374},[608],{"type":59,"value":377},{"type":54,"tag":273,"props":610,"children":611},{"style":380},[612],{"type":59,"value":383},{"type":54,"tag":273,"props":614,"children":615},{"style":330},[616],{"type":59,"value":388},{"type":54,"tag":273,"props":618,"children":619},{"style":330},[620],{"type":59,"value":393},{"type":54,"tag":273,"props":622,"children":623},{"style":285},[624],{"type":59,"value":625},"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-embedded-{VERSION}.min.js",{"type":54,"tag":273,"props":627,"children":628},{"style":330},[629],{"type":59,"value":393},{"type":54,"tag":273,"props":631,"children":632},{"style":330},[633],{"type":59,"value":407},{"type":54,"tag":273,"props":635,"children":636},{"style":374},[637],{"type":59,"value":377},{"type":54,"tag":273,"props":639,"children":640},{"style":330},[641],{"type":59,"value":416},{"type":54,"tag":81,"props":643,"children":645},{"id":644},"complete-initialization-flow",[646],{"type":59,"value":647},"Complete Initialization Flow",{"type":54,"tag":262,"props":649,"children":651},{"className":301,"code":650,"language":303,"meta":267,"style":267},"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",[652],{"type":54,"tag":93,"props":653,"children":654},{"__ignoreMap":267},[655,686,695,704,746,753,780,793,802,862,870,879,911,934,964,987,1008,1029,1046,1054,1063,1092,1114,1136,1158,1180,1208,1230,1246,1254,1297,1330,1380,1389],{"type":54,"tag":273,"props":656,"children":657},{"class":275,"line":276},[658,662,666,670,674,678,682],{"type":54,"tag":273,"props":659,"children":660},{"style":313},[661],{"type":59,"value":316},{"type":54,"tag":273,"props":663,"children":664},{"style":319},[665],{"type":59,"value":322},{"type":54,"tag":273,"props":667,"children":668},{"style":313},[669],{"type":59,"value":327},{"type":54,"tag":273,"props":671,"children":672},{"style":330},[673],{"type":59,"value":333},{"type":54,"tag":273,"props":675,"children":676},{"style":285},[677],{"type":59,"value":338},{"type":54,"tag":273,"props":679,"children":680},{"style":330},[681],{"type":59,"value":343},{"type":54,"tag":273,"props":683,"children":684},{"style":330},[685],{"type":59,"value":348},{"type":54,"tag":273,"props":687,"children":688},{"class":275,"line":419},[689],{"type":54,"tag":273,"props":690,"children":692},{"emptyLinePlaceholder":691},true,[693],{"type":59,"value":694},"\n",{"type":54,"tag":273,"props":696,"children":697},{"class":275,"line":464},[698],{"type":54,"tag":273,"props":699,"children":701},{"style":700},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[702],{"type":59,"value":703},"\u002F\u002F Step 1: Create client instance (do once, not on every render!)\n",{"type":54,"tag":273,"props":705,"children":706},{"class":275,"line":509},[707,712,717,721,726,731,737,742],{"type":54,"tag":273,"props":708,"children":709},{"style":380},[710],{"type":59,"value":711},"const",{"type":54,"tag":273,"props":713,"children":714},{"style":319},[715],{"type":59,"value":716}," client ",{"type":54,"tag":273,"props":718,"children":719},{"style":330},[720],{"type":59,"value":388},{"type":54,"tag":273,"props":722,"children":723},{"style":319},[724],{"type":59,"value":725}," ZoomMtgEmbedded",{"type":54,"tag":273,"props":727,"children":728},{"style":330},[729],{"type":59,"value":730},".",{"type":54,"tag":273,"props":732,"children":734},{"style":733},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[735],{"type":59,"value":736},"createClient",{"type":54,"tag":273,"props":738,"children":739},{"style":319},[740],{"type":59,"value":741},"()",{"type":54,"tag":273,"props":743,"children":744},{"style":330},[745],{"type":59,"value":348},{"type":54,"tag":273,"props":747,"children":748},{"class":275,"line":554},[749],{"type":54,"tag":273,"props":750,"children":751},{"emptyLinePlaceholder":691},[752],{"type":59,"value":694},{"type":54,"tag":273,"props":754,"children":755},{"class":275,"line":599},[756,761,766,771,775],{"type":54,"tag":273,"props":757,"children":758},{"style":380},[759],{"type":59,"value":760},"async",{"type":54,"tag":273,"props":762,"children":763},{"style":380},[764],{"type":59,"value":765}," function",{"type":54,"tag":273,"props":767,"children":768},{"style":733},[769],{"type":59,"value":770}," joinMeeting",{"type":54,"tag":273,"props":772,"children":773},{"style":330},[774],{"type":59,"value":741},{"type":54,"tag":273,"props":776,"children":777},{"style":330},[778],{"type":59,"value":779}," {\n",{"type":54,"tag":273,"props":781,"children":783},{"class":275,"line":782},7,[784,789],{"type":54,"tag":273,"props":785,"children":786},{"style":313},[787],{"type":59,"value":788},"  try",{"type":54,"tag":273,"props":790,"children":791},{"style":330},[792],{"type":59,"value":779},{"type":54,"tag":273,"props":794,"children":796},{"class":275,"line":795},8,[797],{"type":54,"tag":273,"props":798,"children":799},{"style":700},[800],{"type":59,"value":801},"    \u002F\u002F Step 2: Get container element\n",{"type":54,"tag":273,"props":803,"children":805},{"class":275,"line":804},9,[806,811,816,821,826,830,835,840,844,849,853,858],{"type":54,"tag":273,"props":807,"children":808},{"style":380},[809],{"type":59,"value":810},"    const",{"type":54,"tag":273,"props":812,"children":813},{"style":319},[814],{"type":59,"value":815}," meetingSDKElement",{"type":54,"tag":273,"props":817,"children":818},{"style":330},[819],{"type":59,"value":820}," =",{"type":54,"tag":273,"props":822,"children":823},{"style":319},[824],{"type":59,"value":825}," document",{"type":54,"tag":273,"props":827,"children":828},{"style":330},[829],{"type":59,"value":730},{"type":54,"tag":273,"props":831,"children":832},{"style":733},[833],{"type":59,"value":834},"getElementById",{"type":54,"tag":273,"props":836,"children":837},{"style":374},[838],{"type":59,"value":839},"(",{"type":54,"tag":273,"props":841,"children":842},{"style":330},[843],{"type":59,"value":343},{"type":54,"tag":273,"props":845,"children":846},{"style":285},[847],{"type":59,"value":848},"meetingSDKElement",{"type":54,"tag":273,"props":850,"children":851},{"style":330},[852],{"type":59,"value":343},{"type":54,"tag":273,"props":854,"children":855},{"style":374},[856],{"type":59,"value":857},")",{"type":54,"tag":273,"props":859,"children":860},{"style":330},[861],{"type":59,"value":348},{"type":54,"tag":273,"props":863,"children":865},{"class":275,"line":864},10,[866],{"type":54,"tag":273,"props":867,"children":868},{"emptyLinePlaceholder":691},[869],{"type":59,"value":694},{"type":54,"tag":273,"props":871,"children":873},{"class":275,"line":872},11,[874],{"type":54,"tag":273,"props":875,"children":876},{"style":700},[877],{"type":59,"value":878},"    \u002F\u002F Step 3: Initialize client\n",{"type":54,"tag":273,"props":880,"children":882},{"class":275,"line":881},12,[883,888,893,897,902,906],{"type":54,"tag":273,"props":884,"children":885},{"style":313},[886],{"type":59,"value":887},"    await",{"type":54,"tag":273,"props":889,"children":890},{"style":319},[891],{"type":59,"value":892}," client",{"type":54,"tag":273,"props":894,"children":895},{"style":330},[896],{"type":59,"value":730},{"type":54,"tag":273,"props":898,"children":899},{"style":733},[900],{"type":59,"value":901},"init",{"type":54,"tag":273,"props":903,"children":904},{"style":374},[905],{"type":59,"value":839},{"type":54,"tag":273,"props":907,"children":908},{"style":330},[909],{"type":59,"value":910},"{\n",{"type":54,"tag":273,"props":912,"children":914},{"class":275,"line":913},13,[915,920,925,929],{"type":54,"tag":273,"props":916,"children":917},{"style":374},[918],{"type":59,"value":919},"      zoomAppRoot",{"type":54,"tag":273,"props":921,"children":922},{"style":330},[923],{"type":59,"value":924},":",{"type":54,"tag":273,"props":926,"children":927},{"style":319},[928],{"type":59,"value":815},{"type":54,"tag":273,"props":930,"children":931},{"style":330},[932],{"type":59,"value":933},",\n",{"type":54,"tag":273,"props":935,"children":937},{"class":275,"line":936},14,[938,943,947,951,956,960],{"type":54,"tag":273,"props":939,"children":940},{"style":374},[941],{"type":59,"value":942},"      language",{"type":54,"tag":273,"props":944,"children":945},{"style":330},[946],{"type":59,"value":924},{"type":54,"tag":273,"props":948,"children":949},{"style":330},[950],{"type":59,"value":333},{"type":54,"tag":273,"props":952,"children":953},{"style":285},[954],{"type":59,"value":955},"en-US",{"type":54,"tag":273,"props":957,"children":958},{"style":330},[959],{"type":59,"value":343},{"type":54,"tag":273,"props":961,"children":962},{"style":330},[963],{"type":59,"value":933},{"type":54,"tag":273,"props":965,"children":967},{"class":275,"line":966},15,[968,973,977,983],{"type":54,"tag":273,"props":969,"children":970},{"style":374},[971],{"type":59,"value":972},"      debug",{"type":54,"tag":273,"props":974,"children":975},{"style":330},[976],{"type":59,"value":924},{"type":54,"tag":273,"props":978,"children":980},{"style":979},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[981],{"type":59,"value":982}," true",{"type":54,"tag":273,"props":984,"children":985},{"style":330},[986],{"type":59,"value":933},{"type":54,"tag":273,"props":988,"children":990},{"class":275,"line":989},16,[991,996,1000,1004],{"type":54,"tag":273,"props":992,"children":993},{"style":374},[994],{"type":59,"value":995},"      patchJsMedia",{"type":54,"tag":273,"props":997,"children":998},{"style":330},[999],{"type":59,"value":924},{"type":54,"tag":273,"props":1001,"children":1002},{"style":979},[1003],{"type":59,"value":982},{"type":54,"tag":273,"props":1005,"children":1006},{"style":330},[1007],{"type":59,"value":933},{"type":54,"tag":273,"props":1009,"children":1011},{"class":275,"line":1010},17,[1012,1017,1021,1025],{"type":54,"tag":273,"props":1013,"children":1014},{"style":374},[1015],{"type":59,"value":1016},"      leaveOnPageUnload",{"type":54,"tag":273,"props":1018,"children":1019},{"style":330},[1020],{"type":59,"value":924},{"type":54,"tag":273,"props":1022,"children":1023},{"style":979},[1024],{"type":59,"value":982},{"type":54,"tag":273,"props":1026,"children":1027},{"style":330},[1028],{"type":59,"value":933},{"type":54,"tag":273,"props":1030,"children":1032},{"class":275,"line":1031},18,[1033,1038,1042],{"type":54,"tag":273,"props":1034,"children":1035},{"style":330},[1036],{"type":59,"value":1037},"    }",{"type":54,"tag":273,"props":1039,"children":1040},{"style":374},[1041],{"type":59,"value":857},{"type":54,"tag":273,"props":1043,"children":1044},{"style":330},[1045],{"type":59,"value":348},{"type":54,"tag":273,"props":1047,"children":1049},{"class":275,"line":1048},19,[1050],{"type":54,"tag":273,"props":1051,"children":1052},{"emptyLinePlaceholder":691},[1053],{"type":59,"value":694},{"type":54,"tag":273,"props":1055,"children":1057},{"class":275,"line":1056},20,[1058],{"type":54,"tag":273,"props":1059,"children":1060},{"style":700},[1061],{"type":59,"value":1062},"    \u002F\u002F Step 4: Join meeting\n",{"type":54,"tag":273,"props":1064,"children":1066},{"class":275,"line":1065},21,[1067,1071,1075,1079,1084,1088],{"type":54,"tag":273,"props":1068,"children":1069},{"style":313},[1070],{"type":59,"value":887},{"type":54,"tag":273,"props":1072,"children":1073},{"style":319},[1074],{"type":59,"value":892},{"type":54,"tag":273,"props":1076,"children":1077},{"style":330},[1078],{"type":59,"value":730},{"type":54,"tag":273,"props":1080,"children":1081},{"style":733},[1082],{"type":59,"value":1083},"join",{"type":54,"tag":273,"props":1085,"children":1086},{"style":374},[1087],{"type":59,"value":839},{"type":54,"tag":273,"props":1089,"children":1090},{"style":330},[1091],{"type":59,"value":910},{"type":54,"tag":273,"props":1093,"children":1095},{"class":275,"line":1094},22,[1096,1101,1105,1110],{"type":54,"tag":273,"props":1097,"children":1098},{"style":374},[1099],{"type":59,"value":1100},"      signature",{"type":54,"tag":273,"props":1102,"children":1103},{"style":330},[1104],{"type":59,"value":924},{"type":54,"tag":273,"props":1106,"children":1107},{"style":319},[1108],{"type":59,"value":1109}," signature",{"type":54,"tag":273,"props":1111,"children":1112},{"style":330},[1113],{"type":59,"value":933},{"type":54,"tag":273,"props":1115,"children":1117},{"class":275,"line":1116},23,[1118,1123,1127,1132],{"type":54,"tag":273,"props":1119,"children":1120},{"style":374},[1121],{"type":59,"value":1122},"      sdkKey",{"type":54,"tag":273,"props":1124,"children":1125},{"style":330},[1126],{"type":59,"value":924},{"type":54,"tag":273,"props":1128,"children":1129},{"style":319},[1130],{"type":59,"value":1131}," sdkKey",{"type":54,"tag":273,"props":1133,"children":1134},{"style":330},[1135],{"type":59,"value":933},{"type":54,"tag":273,"props":1137,"children":1139},{"class":275,"line":1138},24,[1140,1145,1149,1154],{"type":54,"tag":273,"props":1141,"children":1142},{"style":374},[1143],{"type":59,"value":1144},"      meetingNumber",{"type":54,"tag":273,"props":1146,"children":1147},{"style":330},[1148],{"type":59,"value":924},{"type":54,"tag":273,"props":1150,"children":1151},{"style":319},[1152],{"type":59,"value":1153}," meetingNumber",{"type":54,"tag":273,"props":1155,"children":1156},{"style":330},[1157],{"type":59,"value":933},{"type":54,"tag":273,"props":1159,"children":1161},{"class":275,"line":1160},25,[1162,1167,1171,1176],{"type":54,"tag":273,"props":1163,"children":1164},{"style":374},[1165],{"type":59,"value":1166},"      userName",{"type":54,"tag":273,"props":1168,"children":1169},{"style":330},[1170],{"type":59,"value":924},{"type":54,"tag":273,"props":1172,"children":1173},{"style":319},[1174],{"type":59,"value":1175}," userName",{"type":54,"tag":273,"props":1177,"children":1178},{"style":330},[1179],{"type":59,"value":933},{"type":54,"tag":273,"props":1181,"children":1183},{"class":275,"line":1182},26,[1184,1189,1193,1198,1203],{"type":54,"tag":273,"props":1185,"children":1186},{"style":374},[1187],{"type":59,"value":1188},"      password",{"type":54,"tag":273,"props":1190,"children":1191},{"style":330},[1192],{"type":59,"value":924},{"type":54,"tag":273,"props":1194,"children":1195},{"style":319},[1196],{"type":59,"value":1197}," password",{"type":54,"tag":273,"props":1199,"children":1200},{"style":330},[1201],{"type":59,"value":1202},",",{"type":54,"tag":273,"props":1204,"children":1205},{"style":700},[1206],{"type":59,"value":1207},"  \u002F\u002F lowercase!\n",{"type":54,"tag":273,"props":1209,"children":1211},{"class":275,"line":1210},27,[1212,1217,1221,1226],{"type":54,"tag":273,"props":1213,"children":1214},{"style":374},[1215],{"type":59,"value":1216},"      userEmail",{"type":54,"tag":273,"props":1218,"children":1219},{"style":330},[1220],{"type":59,"value":924},{"type":54,"tag":273,"props":1222,"children":1223},{"style":319},[1224],{"type":59,"value":1225}," userEmail",{"type":54,"tag":273,"props":1227,"children":1228},{"style":330},[1229],{"type":59,"value":933},{"type":54,"tag":273,"props":1231,"children":1233},{"class":275,"line":1232},28,[1234,1238,1242],{"type":54,"tag":273,"props":1235,"children":1236},{"style":330},[1237],{"type":59,"value":1037},{"type":54,"tag":273,"props":1239,"children":1240},{"style":374},[1241],{"type":59,"value":857},{"type":54,"tag":273,"props":1243,"children":1244},{"style":330},[1245],{"type":59,"value":348},{"type":54,"tag":273,"props":1247,"children":1249},{"class":275,"line":1248},29,[1250],{"type":54,"tag":273,"props":1251,"children":1252},{"emptyLinePlaceholder":691},[1253],{"type":59,"value":694},{"type":54,"tag":273,"props":1255,"children":1257},{"class":275,"line":1256},30,[1258,1263,1267,1272,1276,1280,1285,1289,1293],{"type":54,"tag":273,"props":1259,"children":1260},{"style":319},[1261],{"type":59,"value":1262},"    console",{"type":54,"tag":273,"props":1264,"children":1265},{"style":330},[1266],{"type":59,"value":730},{"type":54,"tag":273,"props":1268,"children":1269},{"style":733},[1270],{"type":59,"value":1271},"log",{"type":54,"tag":273,"props":1273,"children":1274},{"style":374},[1275],{"type":59,"value":839},{"type":54,"tag":273,"props":1277,"children":1278},{"style":330},[1279],{"type":59,"value":343},{"type":54,"tag":273,"props":1281,"children":1282},{"style":285},[1283],{"type":59,"value":1284},"Joined successfully!",{"type":54,"tag":273,"props":1286,"children":1287},{"style":330},[1288],{"type":59,"value":343},{"type":54,"tag":273,"props":1290,"children":1291},{"style":374},[1292],{"type":59,"value":857},{"type":54,"tag":273,"props":1294,"children":1295},{"style":330},[1296],{"type":59,"value":348},{"type":54,"tag":273,"props":1298,"children":1300},{"class":275,"line":1299},31,[1301,1306,1311,1316,1321,1326],{"type":54,"tag":273,"props":1302,"children":1303},{"style":330},[1304],{"type":59,"value":1305},"  }",{"type":54,"tag":273,"props":1307,"children":1308},{"style":313},[1309],{"type":59,"value":1310}," catch",{"type":54,"tag":273,"props":1312,"children":1313},{"style":374},[1314],{"type":59,"value":1315}," (",{"type":54,"tag":273,"props":1317,"children":1318},{"style":319},[1319],{"type":59,"value":1320},"error",{"type":54,"tag":273,"props":1322,"children":1323},{"style":374},[1324],{"type":59,"value":1325},") ",{"type":54,"tag":273,"props":1327,"children":1328},{"style":330},[1329],{"type":59,"value":910},{"type":54,"tag":273,"props":1331,"children":1333},{"class":275,"line":1332},32,[1334,1338,1342,1346,1350,1354,1359,1363,1367,1372,1376],{"type":54,"tag":273,"props":1335,"children":1336},{"style":319},[1337],{"type":59,"value":1262},{"type":54,"tag":273,"props":1339,"children":1340},{"style":330},[1341],{"type":59,"value":730},{"type":54,"tag":273,"props":1343,"children":1344},{"style":733},[1345],{"type":59,"value":1320},{"type":54,"tag":273,"props":1347,"children":1348},{"style":374},[1349],{"type":59,"value":839},{"type":54,"tag":273,"props":1351,"children":1352},{"style":330},[1353],{"type":59,"value":343},{"type":54,"tag":273,"props":1355,"children":1356},{"style":285},[1357],{"type":59,"value":1358},"Failed to join:",{"type":54,"tag":273,"props":1360,"children":1361},{"style":330},[1362],{"type":59,"value":343},{"type":54,"tag":273,"props":1364,"children":1365},{"style":330},[1366],{"type":59,"value":1202},{"type":54,"tag":273,"props":1368,"children":1369},{"style":319},[1370],{"type":59,"value":1371}," error",{"type":54,"tag":273,"props":1373,"children":1374},{"style":374},[1375],{"type":59,"value":857},{"type":54,"tag":273,"props":1377,"children":1378},{"style":330},[1379],{"type":59,"value":348},{"type":54,"tag":273,"props":1381,"children":1383},{"class":275,"line":1382},33,[1384],{"type":54,"tag":273,"props":1385,"children":1386},{"style":330},[1387],{"type":59,"value":1388},"  }\n",{"type":54,"tag":273,"props":1390,"children":1392},{"class":275,"line":1391},34,[1393],{"type":54,"tag":273,"props":1394,"children":1395},{"style":330},[1396],{"type":59,"value":1397},"}\n",{"type":54,"tag":81,"props":1399,"children":1401},{"id":1400},"clientinit-all-options",[1402],{"type":59,"value":1403},"client.init() - All Options",{"type":54,"tag":255,"props":1405,"children":1407},{"id":1406},"required",[1408],{"type":59,"value":1409},"Required",{"type":54,"tag":102,"props":1411,"children":1412},{},[1413,1434],{"type":54,"tag":106,"props":1414,"children":1415},{},[1416],{"type":54,"tag":110,"props":1417,"children":1418},{},[1419,1424,1429],{"type":54,"tag":114,"props":1420,"children":1421},{},[1422],{"type":59,"value":1423},"Parameter",{"type":54,"tag":114,"props":1425,"children":1426},{},[1427],{"type":59,"value":1428},"Type",{"type":54,"tag":114,"props":1430,"children":1431},{},[1432],{"type":59,"value":1433},"Description",{"type":54,"tag":125,"props":1435,"children":1436},{},[1437],{"type":54,"tag":110,"props":1438,"children":1439},{},[1440,1449,1458],{"type":54,"tag":132,"props":1441,"children":1442},{},[1443],{"type":54,"tag":93,"props":1444,"children":1446},{"className":1445},[],[1447],{"type":59,"value":1448},"zoomAppRoot",{"type":54,"tag":132,"props":1450,"children":1451},{},[1452],{"type":54,"tag":93,"props":1453,"children":1455},{"className":1454},[],[1456],{"type":59,"value":1457},"HTMLElement",{"type":54,"tag":132,"props":1459,"children":1460},{},[1461],{"type":59,"value":1462},"Container element for meeting UI",{"type":54,"tag":255,"props":1464,"children":1466},{"id":1465},"display",[1467],{"type":59,"value":1468},"Display",{"type":54,"tag":102,"props":1470,"children":1471},{},[1472,1495],{"type":54,"tag":106,"props":1473,"children":1474},{},[1475],{"type":54,"tag":110,"props":1476,"children":1477},{},[1478,1482,1486,1491],{"type":54,"tag":114,"props":1479,"children":1480},{},[1481],{"type":59,"value":1423},{"type":54,"tag":114,"props":1483,"children":1484},{},[1485],{"type":59,"value":1428},{"type":54,"tag":114,"props":1487,"children":1488},{},[1489],{"type":59,"value":1490},"Default",{"type":54,"tag":114,"props":1492,"children":1493},{},[1494],{"type":59,"value":1433},{"type":54,"tag":125,"props":1496,"children":1497},{},[1498,1533],{"type":54,"tag":110,"props":1499,"children":1500},{},[1501,1510,1519,1528],{"type":54,"tag":132,"props":1502,"children":1503},{},[1504],{"type":54,"tag":93,"props":1505,"children":1507},{"className":1506},[],[1508],{"type":59,"value":1509},"language",{"type":54,"tag":132,"props":1511,"children":1512},{},[1513],{"type":54,"tag":93,"props":1514,"children":1516},{"className":1515},[],[1517],{"type":59,"value":1518},"string",{"type":54,"tag":132,"props":1520,"children":1521},{},[1522],{"type":54,"tag":93,"props":1523,"children":1525},{"className":1524},[],[1526],{"type":59,"value":1527},"'en-US'",{"type":54,"tag":132,"props":1529,"children":1530},{},[1531],{"type":59,"value":1532},"UI language",{"type":54,"tag":110,"props":1534,"children":1535},{},[1536,1545,1554,1563],{"type":54,"tag":132,"props":1537,"children":1538},{},[1539],{"type":54,"tag":93,"props":1540,"children":1542},{"className":1541},[],[1543],{"type":59,"value":1544},"debug",{"type":54,"tag":132,"props":1546,"children":1547},{},[1548],{"type":54,"tag":93,"props":1549,"children":1551},{"className":1550},[],[1552],{"type":59,"value":1553},"boolean",{"type":54,"tag":132,"props":1555,"children":1556},{},[1557],{"type":54,"tag":93,"props":1558,"children":1560},{"className":1559},[],[1561],{"type":59,"value":1562},"false",{"type":54,"tag":132,"props":1564,"children":1565},{},[1566],{"type":59,"value":1567},"Enable debug logging",{"type":54,"tag":255,"props":1569,"children":1571},{"id":1570},"media",[1572],{"type":59,"value":1573},"Media",{"type":54,"tag":102,"props":1575,"children":1576},{},[1577,1599],{"type":54,"tag":106,"props":1578,"children":1579},{},[1580],{"type":54,"tag":110,"props":1581,"children":1582},{},[1583,1587,1591,1595],{"type":54,"tag":114,"props":1584,"children":1585},{},[1586],{"type":59,"value":1423},{"type":54,"tag":114,"props":1588,"children":1589},{},[1590],{"type":59,"value":1428},{"type":54,"tag":114,"props":1592,"children":1593},{},[1594],{"type":59,"value":1490},{"type":54,"tag":114,"props":1596,"children":1597},{},[1598],{"type":59,"value":1433},{"type":54,"tag":125,"props":1600,"children":1601},{},[1602,1635,1668,1702],{"type":54,"tag":110,"props":1603,"children":1604},{},[1605,1614,1622,1630],{"type":54,"tag":132,"props":1606,"children":1607},{},[1608],{"type":54,"tag":93,"props":1609,"children":1611},{"className":1610},[],[1612],{"type":59,"value":1613},"patchJsMedia",{"type":54,"tag":132,"props":1615,"children":1616},{},[1617],{"type":54,"tag":93,"props":1618,"children":1620},{"className":1619},[],[1621],{"type":59,"value":1553},{"type":54,"tag":132,"props":1623,"children":1624},{},[1625],{"type":54,"tag":93,"props":1626,"children":1628},{"className":1627},[],[1629],{"type":59,"value":1562},{"type":54,"tag":132,"props":1631,"children":1632},{},[1633],{"type":59,"value":1634},"Auto-apply media fixes",{"type":54,"tag":110,"props":1636,"children":1637},{},[1638,1647,1655,1663],{"type":54,"tag":132,"props":1639,"children":1640},{},[1641],{"type":54,"tag":93,"props":1642,"children":1644},{"className":1643},[],[1645],{"type":59,"value":1646},"leaveOnPageUnload",{"type":54,"tag":132,"props":1648,"children":1649},{},[1650],{"type":54,"tag":93,"props":1651,"children":1653},{"className":1652},[],[1654],{"type":59,"value":1553},{"type":54,"tag":132,"props":1656,"children":1657},{},[1658],{"type":54,"tag":93,"props":1659,"children":1661},{"className":1660},[],[1662],{"type":59,"value":1562},{"type":54,"tag":132,"props":1664,"children":1665},{},[1666],{"type":59,"value":1667},"Cleanup on page unload",{"type":54,"tag":110,"props":1669,"children":1670},{},[1671,1680,1688,1697],{"type":54,"tag":132,"props":1672,"children":1673},{},[1674],{"type":54,"tag":93,"props":1675,"children":1677},{"className":1676},[],[1678],{"type":59,"value":1679},"enableHD",{"type":54,"tag":132,"props":1681,"children":1682},{},[1683],{"type":54,"tag":93,"props":1684,"children":1686},{"className":1685},[],[1687],{"type":59,"value":1553},{"type":54,"tag":132,"props":1689,"children":1690},{},[1691],{"type":54,"tag":93,"props":1692,"children":1694},{"className":1693},[],[1695],{"type":59,"value":1696},"true",{"type":54,"tag":132,"props":1698,"children":1699},{},[1700],{"type":59,"value":1701},"Enable 720p video",{"type":54,"tag":110,"props":1703,"children":1704},{},[1705,1714,1722,1730],{"type":54,"tag":132,"props":1706,"children":1707},{},[1708],{"type":54,"tag":93,"props":1709,"children":1711},{"className":1710},[],[1712],{"type":59,"value":1713},"enableFullHD",{"type":54,"tag":132,"props":1715,"children":1716},{},[1717],{"type":54,"tag":93,"props":1718,"children":1720},{"className":1719},[],[1721],{"type":59,"value":1553},{"type":54,"tag":132,"props":1723,"children":1724},{},[1725],{"type":54,"tag":93,"props":1726,"children":1728},{"className":1727},[],[1729],{"type":59,"value":1562},{"type":54,"tag":132,"props":1731,"children":1732},{},[1733],{"type":59,"value":1734},"Enable 1080p video",{"type":54,"tag":255,"props":1736,"children":1738},{"id":1737},"customization",[1739],{"type":59,"value":1740},"Customization",{"type":54,"tag":102,"props":1742,"children":1743},{},[1744,1762],{"type":54,"tag":106,"props":1745,"children":1746},{},[1747],{"type":54,"tag":110,"props":1748,"children":1749},{},[1750,1754,1758],{"type":54,"tag":114,"props":1751,"children":1752},{},[1753],{"type":59,"value":1423},{"type":54,"tag":114,"props":1755,"children":1756},{},[1757],{"type":59,"value":1428},{"type":54,"tag":114,"props":1759,"children":1760},{},[1761],{"type":59,"value":1433},{"type":54,"tag":125,"props":1763,"children":1764},{},[1765,1791,1822],{"type":54,"tag":110,"props":1766,"children":1767},{},[1768,1777,1786],{"type":54,"tag":132,"props":1769,"children":1770},{},[1771],{"type":54,"tag":93,"props":1772,"children":1774},{"className":1773},[],[1775],{"type":59,"value":1776},"customize",{"type":54,"tag":132,"props":1778,"children":1779},{},[1780],{"type":54,"tag":93,"props":1781,"children":1783},{"className":1782},[],[1784],{"type":59,"value":1785},"object",{"type":54,"tag":132,"props":1787,"children":1788},{},[1789],{"type":59,"value":1790},"UI customization options",{"type":54,"tag":110,"props":1792,"children":1793},{},[1794,1803,1811],{"type":54,"tag":132,"props":1795,"children":1796},{},[1797],{"type":54,"tag":93,"props":1798,"children":1800},{"className":1799},[],[1801],{"type":59,"value":1802},"webEndpoint",{"type":54,"tag":132,"props":1804,"children":1805},{},[1806],{"type":54,"tag":93,"props":1807,"children":1809},{"className":1808},[],[1810],{"type":59,"value":1518},{"type":54,"tag":132,"props":1812,"children":1813},{},[1814,1816],{"type":59,"value":1815},"For ZFG: ",{"type":54,"tag":93,"props":1817,"children":1819},{"className":1818},[],[1820],{"type":59,"value":1821},"'www.zoomgov.com'",{"type":54,"tag":110,"props":1823,"children":1824},{},[1825,1834,1842],{"type":54,"tag":132,"props":1826,"children":1827},{},[1828],{"type":54,"tag":93,"props":1829,"children":1831},{"className":1830},[],[1832],{"type":59,"value":1833},"assetPath",{"type":54,"tag":132,"props":1835,"children":1836},{},[1837],{"type":54,"tag":93,"props":1838,"children":1840},{"className":1839},[],[1841],{"type":59,"value":1518},{"type":54,"tag":132,"props":1843,"children":1844},{},[1845],{"type":59,"value":1846},"Custom path for AV libraries",{"type":54,"tag":255,"props":1848,"children":1850},{"id":1849},"customize-object",[1851],{"type":59,"value":1852},"Customize Object",{"type":54,"tag":262,"props":1854,"children":1856},{"className":301,"code":1855,"language":303,"meta":267,"style":267},"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",[1857],{"type":54,"tag":93,"props":1858,"children":1859},{"__ignoreMap":267},[1860,1888,1909,1925,1933,1950,1971,1996,2016,2036,2056,2076,2096,2116,2133,2145,2153,2161,2177,2197,2213,2229,2251,2268,2276,2292,2312,2328,2336,2344,2360,2377,2385,2393,2400,2409,2426,2443,2452,2482,2512,2539,2581,2590,2598,2607,2615,2623,2632,2649,2675,2684,2692],{"type":54,"tag":273,"props":1861,"children":1862},{"class":275,"line":276},[1863,1868,1872,1876,1880,1884],{"type":54,"tag":273,"props":1864,"children":1865},{"style":313},[1866],{"type":59,"value":1867},"await",{"type":54,"tag":273,"props":1869,"children":1870},{"style":319},[1871],{"type":59,"value":892},{"type":54,"tag":273,"props":1873,"children":1874},{"style":330},[1875],{"type":59,"value":730},{"type":54,"tag":273,"props":1877,"children":1878},{"style":733},[1879],{"type":59,"value":901},{"type":54,"tag":273,"props":1881,"children":1882},{"style":319},[1883],{"type":59,"value":839},{"type":54,"tag":273,"props":1885,"children":1886},{"style":330},[1887],{"type":59,"value":910},{"type":54,"tag":273,"props":1889,"children":1890},{"class":275,"line":419},[1891,1896,1900,1905],{"type":54,"tag":273,"props":1892,"children":1893},{"style":374},[1894],{"type":59,"value":1895},"  zoomAppRoot",{"type":54,"tag":273,"props":1897,"children":1898},{"style":330},[1899],{"type":59,"value":924},{"type":54,"tag":273,"props":1901,"children":1902},{"style":319},[1903],{"type":59,"value":1904}," element",{"type":54,"tag":273,"props":1906,"children":1907},{"style":330},[1908],{"type":59,"value":933},{"type":54,"tag":273,"props":1910,"children":1911},{"class":275,"line":464},[1912,1917,1921],{"type":54,"tag":273,"props":1913,"children":1914},{"style":374},[1915],{"type":59,"value":1916},"  customize",{"type":54,"tag":273,"props":1918,"children":1919},{"style":330},[1920],{"type":59,"value":924},{"type":54,"tag":273,"props":1922,"children":1923},{"style":330},[1924],{"type":59,"value":779},{"type":54,"tag":273,"props":1926,"children":1927},{"class":275,"line":509},[1928],{"type":54,"tag":273,"props":1929,"children":1930},{"style":700},[1931],{"type":59,"value":1932},"    \u002F\u002F Meeting info displayed\n",{"type":54,"tag":273,"props":1934,"children":1935},{"class":275,"line":554},[1936,1941,1945],{"type":54,"tag":273,"props":1937,"children":1938},{"style":374},[1939],{"type":59,"value":1940},"    meetingInfo",{"type":54,"tag":273,"props":1942,"children":1943},{"style":330},[1944],{"type":59,"value":924},{"type":54,"tag":273,"props":1946,"children":1947},{"style":319},[1948],{"type":59,"value":1949}," [\n",{"type":54,"tag":273,"props":1951,"children":1952},{"class":275,"line":599},[1953,1958,1963,1967],{"type":54,"tag":273,"props":1954,"children":1955},{"style":330},[1956],{"type":59,"value":1957},"      '",{"type":54,"tag":273,"props":1959,"children":1960},{"style":285},[1961],{"type":59,"value":1962},"topic",{"type":54,"tag":273,"props":1964,"children":1965},{"style":330},[1966],{"type":59,"value":343},{"type":54,"tag":273,"props":1968,"children":1969},{"style":330},[1970],{"type":59,"value":933},{"type":54,"tag":273,"props":1972,"children":1973},{"class":275,"line":782},[1974,1978,1983,1987,1991],{"type":54,"tag":273,"props":1975,"children":1976},{"style":330},[1977],{"type":59,"value":1957},{"type":54,"tag":273,"props":1979,"children":1980},{"style":285},[1981],{"type":59,"value":1982},"host",{"type":54,"tag":273,"props":1984,"children":1985},{"style":330},[1986],{"type":59,"value":343},{"type":54,"tag":273,"props":1988,"children":1989},{"style":330},[1990],{"type":59,"value":1202},{"type":54,"tag":273,"props":1992,"children":1993},{"style":319},[1994],{"type":59,"value":1995}," \n",{"type":54,"tag":273,"props":1997,"children":1998},{"class":275,"line":795},[1999,2003,2008,2012],{"type":54,"tag":273,"props":2000,"children":2001},{"style":330},[2002],{"type":59,"value":1957},{"type":54,"tag":273,"props":2004,"children":2005},{"style":285},[2006],{"type":59,"value":2007},"mn",{"type":54,"tag":273,"props":2009,"children":2010},{"style":330},[2011],{"type":59,"value":343},{"type":54,"tag":273,"props":2013,"children":2014},{"style":330},[2015],{"type":59,"value":933},{"type":54,"tag":273,"props":2017,"children":2018},{"class":275,"line":804},[2019,2023,2028,2032],{"type":54,"tag":273,"props":2020,"children":2021},{"style":330},[2022],{"type":59,"value":1957},{"type":54,"tag":273,"props":2024,"children":2025},{"style":285},[2026],{"type":59,"value":2027},"pwd",{"type":54,"tag":273,"props":2029,"children":2030},{"style":330},[2031],{"type":59,"value":343},{"type":54,"tag":273,"props":2033,"children":2034},{"style":330},[2035],{"type":59,"value":933},{"type":54,"tag":273,"props":2037,"children":2038},{"class":275,"line":864},[2039,2043,2048,2052],{"type":54,"tag":273,"props":2040,"children":2041},{"style":330},[2042],{"type":59,"value":1957},{"type":54,"tag":273,"props":2044,"children":2045},{"style":285},[2046],{"type":59,"value":2047},"telPwd",{"type":54,"tag":273,"props":2049,"children":2050},{"style":330},[2051],{"type":59,"value":343},{"type":54,"tag":273,"props":2053,"children":2054},{"style":330},[2055],{"type":59,"value":933},{"type":54,"tag":273,"props":2057,"children":2058},{"class":275,"line":872},[2059,2063,2068,2072],{"type":54,"tag":273,"props":2060,"children":2061},{"style":330},[2062],{"type":59,"value":1957},{"type":54,"tag":273,"props":2064,"children":2065},{"style":285},[2066],{"type":59,"value":2067},"invite",{"type":54,"tag":273,"props":2069,"children":2070},{"style":330},[2071],{"type":59,"value":343},{"type":54,"tag":273,"props":2073,"children":2074},{"style":330},[2075],{"type":59,"value":933},{"type":54,"tag":273,"props":2077,"children":2078},{"class":275,"line":881},[2079,2083,2088,2092],{"type":54,"tag":273,"props":2080,"children":2081},{"style":330},[2082],{"type":59,"value":1957},{"type":54,"tag":273,"props":2084,"children":2085},{"style":285},[2086],{"type":59,"value":2087},"participant",{"type":54,"tag":273,"props":2089,"children":2090},{"style":330},[2091],{"type":59,"value":343},{"type":54,"tag":273,"props":2093,"children":2094},{"style":330},[2095],{"type":59,"value":933},{"type":54,"tag":273,"props":2097,"children":2098},{"class":275,"line":913},[2099,2103,2108,2112],{"type":54,"tag":273,"props":2100,"children":2101},{"style":330},[2102],{"type":59,"value":1957},{"type":54,"tag":273,"props":2104,"children":2105},{"style":285},[2106],{"type":59,"value":2107},"dc",{"type":54,"tag":273,"props":2109,"children":2110},{"style":330},[2111],{"type":59,"value":343},{"type":54,"tag":273,"props":2113,"children":2114},{"style":330},[2115],{"type":59,"value":933},{"type":54,"tag":273,"props":2117,"children":2118},{"class":275,"line":936},[2119,2123,2128],{"type":54,"tag":273,"props":2120,"children":2121},{"style":330},[2122],{"type":59,"value":1957},{"type":54,"tag":273,"props":2124,"children":2125},{"style":285},[2126],{"type":59,"value":2127},"enctype",{"type":54,"tag":273,"props":2129,"children":2130},{"style":330},[2131],{"type":59,"value":2132},"'\n",{"type":54,"tag":273,"props":2134,"children":2135},{"class":275,"line":966},[2136,2141],{"type":54,"tag":273,"props":2137,"children":2138},{"style":319},[2139],{"type":59,"value":2140},"    ]",{"type":54,"tag":273,"props":2142,"children":2143},{"style":330},[2144],{"type":59,"value":933},{"type":54,"tag":273,"props":2146,"children":2147},{"class":275,"line":989},[2148],{"type":54,"tag":273,"props":2149,"children":2150},{"style":319},[2151],{"type":59,"value":2152},"    \n",{"type":54,"tag":273,"props":2154,"children":2155},{"class":275,"line":1010},[2156],{"type":54,"tag":273,"props":2157,"children":2158},{"style":700},[2159],{"type":59,"value":2160},"    \u002F\u002F Video customization\n",{"type":54,"tag":273,"props":2162,"children":2163},{"class":275,"line":1031},[2164,2169,2173],{"type":54,"tag":273,"props":2165,"children":2166},{"style":374},[2167],{"type":59,"value":2168},"    video",{"type":54,"tag":273,"props":2170,"children":2171},{"style":330},[2172],{"type":59,"value":924},{"type":54,"tag":273,"props":2174,"children":2175},{"style":330},[2176],{"type":59,"value":779},{"type":54,"tag":273,"props":2178,"children":2179},{"class":275,"line":1048},[2180,2185,2189,2193],{"type":54,"tag":273,"props":2181,"children":2182},{"style":374},[2183],{"type":59,"value":2184},"      isResizable",{"type":54,"tag":273,"props":2186,"children":2187},{"style":330},[2188],{"type":59,"value":924},{"type":54,"tag":273,"props":2190,"children":2191},{"style":979},[2192],{"type":59,"value":982},{"type":54,"tag":273,"props":2194,"children":2195},{"style":330},[2196],{"type":59,"value":933},{"type":54,"tag":273,"props":2198,"children":2199},{"class":275,"line":1056},[2200,2205,2209],{"type":54,"tag":273,"props":2201,"children":2202},{"style":374},[2203],{"type":59,"value":2204},"      viewSizes",{"type":54,"tag":273,"props":2206,"children":2207},{"style":330},[2208],{"type":59,"value":924},{"type":54,"tag":273,"props":2210,"children":2211},{"style":330},[2212],{"type":59,"value":779},{"type":54,"tag":273,"props":2214,"children":2215},{"class":275,"line":1065},[2216,2221,2225],{"type":54,"tag":273,"props":2217,"children":2218},{"style":374},[2219],{"type":59,"value":2220},"        default",{"type":54,"tag":273,"props":2222,"children":2223},{"style":330},[2224],{"type":59,"value":924},{"type":54,"tag":273,"props":2226,"children":2227},{"style":330},[2228],{"type":59,"value":779},{"type":54,"tag":273,"props":2230,"children":2231},{"class":275,"line":1094},[2232,2237,2241,2247],{"type":54,"tag":273,"props":2233,"children":2234},{"style":374},[2235],{"type":59,"value":2236},"          width",{"type":54,"tag":273,"props":2238,"children":2239},{"style":330},[2240],{"type":59,"value":924},{"type":54,"tag":273,"props":2242,"children":2244},{"style":2243},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[2245],{"type":59,"value":2246}," 1000",{"type":54,"tag":273,"props":2248,"children":2249},{"style":330},[2250],{"type":59,"value":933},{"type":54,"tag":273,"props":2252,"children":2253},{"class":275,"line":1116},[2254,2259,2263],{"type":54,"tag":273,"props":2255,"children":2256},{"style":374},[2257],{"type":59,"value":2258},"          height",{"type":54,"tag":273,"props":2260,"children":2261},{"style":330},[2262],{"type":59,"value":924},{"type":54,"tag":273,"props":2264,"children":2265},{"style":2243},[2266],{"type":59,"value":2267}," 600\n",{"type":54,"tag":273,"props":2269,"children":2270},{"class":275,"line":1138},[2271],{"type":54,"tag":273,"props":2272,"children":2273},{"style":330},[2274],{"type":59,"value":2275},"        },\n",{"type":54,"tag":273,"props":2277,"children":2278},{"class":275,"line":1160},[2279,2284,2288],{"type":54,"tag":273,"props":2280,"children":2281},{"style":374},[2282],{"type":59,"value":2283},"        ribbon",{"type":54,"tag":273,"props":2285,"children":2286},{"style":330},[2287],{"type":59,"value":924},{"type":54,"tag":273,"props":2289,"children":2290},{"style":330},[2291],{"type":59,"value":779},{"type":54,"tag":273,"props":2293,"children":2294},{"class":275,"line":1182},[2295,2299,2303,2308],{"type":54,"tag":273,"props":2296,"children":2297},{"style":374},[2298],{"type":59,"value":2236},{"type":54,"tag":273,"props":2300,"children":2301},{"style":330},[2302],{"type":59,"value":924},{"type":54,"tag":273,"props":2304,"children":2305},{"style":2243},[2306],{"type":59,"value":2307}," 300",{"type":54,"tag":273,"props":2309,"children":2310},{"style":330},[2311],{"type":59,"value":933},{"type":54,"tag":273,"props":2313,"children":2314},{"class":275,"line":1210},[2315,2319,2323],{"type":54,"tag":273,"props":2316,"children":2317},{"style":374},[2318],{"type":59,"value":2258},{"type":54,"tag":273,"props":2320,"children":2321},{"style":330},[2322],{"type":59,"value":924},{"type":54,"tag":273,"props":2324,"children":2325},{"style":2243},[2326],{"type":59,"value":2327}," 700\n",{"type":54,"tag":273,"props":2329,"children":2330},{"class":275,"line":1232},[2331],{"type":54,"tag":273,"props":2332,"children":2333},{"style":330},[2334],{"type":59,"value":2335},"        }\n",{"type":54,"tag":273,"props":2337,"children":2338},{"class":275,"line":1248},[2339],{"type":54,"tag":273,"props":2340,"children":2341},{"style":330},[2342],{"type":59,"value":2343},"      },\n",{"type":54,"tag":273,"props":2345,"children":2346},{"class":275,"line":1256},[2347,2352,2356],{"type":54,"tag":273,"props":2348,"children":2349},{"style":374},[2350],{"type":59,"value":2351},"      popper",{"type":54,"tag":273,"props":2353,"children":2354},{"style":330},[2355],{"type":59,"value":924},{"type":54,"tag":273,"props":2357,"children":2358},{"style":330},[2359],{"type":59,"value":779},{"type":54,"tag":273,"props":2361,"children":2362},{"class":275,"line":1299},[2363,2368,2372],{"type":54,"tag":273,"props":2364,"children":2365},{"style":374},[2366],{"type":59,"value":2367},"        disableDraggable",{"type":54,"tag":273,"props":2369,"children":2370},{"style":330},[2371],{"type":59,"value":924},{"type":54,"tag":273,"props":2373,"children":2374},{"style":979},[2375],{"type":59,"value":2376}," false\n",{"type":54,"tag":273,"props":2378,"children":2379},{"class":275,"line":1332},[2380],{"type":54,"tag":273,"props":2381,"children":2382},{"style":330},[2383],{"type":59,"value":2384},"      }\n",{"type":54,"tag":273,"props":2386,"children":2387},{"class":275,"line":1382},[2388],{"type":54,"tag":273,"props":2389,"children":2390},{"style":330},[2391],{"type":59,"value":2392},"    },\n",{"type":54,"tag":273,"props":2394,"children":2395},{"class":275,"line":1391},[2396],{"type":54,"tag":273,"props":2397,"children":2398},{"style":319},[2399],{"type":59,"value":2152},{"type":54,"tag":273,"props":2401,"children":2403},{"class":275,"line":2402},35,[2404],{"type":54,"tag":273,"props":2405,"children":2406},{"style":700},[2407],{"type":59,"value":2408},"    \u002F\u002F Custom toolbar buttons\n",{"type":54,"tag":273,"props":2410,"children":2412},{"class":275,"line":2411},36,[2413,2418,2422],{"type":54,"tag":273,"props":2414,"children":2415},{"style":374},[2416],{"type":59,"value":2417},"    toolbar",{"type":54,"tag":273,"props":2419,"children":2420},{"style":330},[2421],{"type":59,"value":924},{"type":54,"tag":273,"props":2423,"children":2424},{"style":330},[2425],{"type":59,"value":779},{"type":54,"tag":273,"props":2427,"children":2429},{"class":275,"line":2428},37,[2430,2435,2439],{"type":54,"tag":273,"props":2431,"children":2432},{"style":374},[2433],{"type":59,"value":2434},"      buttons",{"type":54,"tag":273,"props":2436,"children":2437},{"style":330},[2438],{"type":59,"value":924},{"type":54,"tag":273,"props":2440,"children":2441},{"style":319},[2442],{"type":59,"value":1949},{"type":54,"tag":273,"props":2444,"children":2446},{"class":275,"line":2445},38,[2447],{"type":54,"tag":273,"props":2448,"children":2449},{"style":330},[2450],{"type":59,"value":2451},"        {\n",{"type":54,"tag":273,"props":2453,"children":2455},{"class":275,"line":2454},39,[2456,2461,2465,2469,2474,2478],{"type":54,"tag":273,"props":2457,"children":2458},{"style":374},[2459],{"type":59,"value":2460},"          text",{"type":54,"tag":273,"props":2462,"children":2463},{"style":330},[2464],{"type":59,"value":924},{"type":54,"tag":273,"props":2466,"children":2467},{"style":330},[2468],{"type":59,"value":333},{"type":54,"tag":273,"props":2470,"children":2471},{"style":285},[2472],{"type":59,"value":2473},"Custom Button",{"type":54,"tag":273,"props":2475,"children":2476},{"style":330},[2477],{"type":59,"value":343},{"type":54,"tag":273,"props":2479,"children":2480},{"style":330},[2481],{"type":59,"value":933},{"type":54,"tag":273,"props":2483,"children":2485},{"class":275,"line":2484},40,[2486,2491,2495,2499,2504,2508],{"type":54,"tag":273,"props":2487,"children":2488},{"style":374},[2489],{"type":59,"value":2490},"          className",{"type":54,"tag":273,"props":2492,"children":2493},{"style":330},[2494],{"type":59,"value":924},{"type":54,"tag":273,"props":2496,"children":2497},{"style":330},[2498],{"type":59,"value":333},{"type":54,"tag":273,"props":2500,"children":2501},{"style":285},[2502],{"type":59,"value":2503},"custom-btn",{"type":54,"tag":273,"props":2505,"children":2506},{"style":330},[2507],{"type":59,"value":343},{"type":54,"tag":273,"props":2509,"children":2510},{"style":330},[2511],{"type":59,"value":933},{"type":54,"tag":273,"props":2513,"children":2515},{"class":275,"line":2514},41,[2516,2521,2525,2530,2535],{"type":54,"tag":273,"props":2517,"children":2518},{"style":733},[2519],{"type":59,"value":2520},"          onClick",{"type":54,"tag":273,"props":2522,"children":2523},{"style":330},[2524],{"type":59,"value":924},{"type":54,"tag":273,"props":2526,"children":2527},{"style":330},[2528],{"type":59,"value":2529}," ()",{"type":54,"tag":273,"props":2531,"children":2532},{"style":380},[2533],{"type":59,"value":2534}," =>",{"type":54,"tag":273,"props":2536,"children":2537},{"style":330},[2538],{"type":59,"value":779},{"type":54,"tag":273,"props":2540,"children":2542},{"class":275,"line":2541},42,[2543,2548,2552,2556,2560,2564,2569,2573,2577],{"type":54,"tag":273,"props":2544,"children":2545},{"style":319},[2546],{"type":59,"value":2547},"            console",{"type":54,"tag":273,"props":2549,"children":2550},{"style":330},[2551],{"type":59,"value":730},{"type":54,"tag":273,"props":2553,"children":2554},{"style":733},[2555],{"type":59,"value":1271},{"type":54,"tag":273,"props":2557,"children":2558},{"style":374},[2559],{"type":59,"value":839},{"type":54,"tag":273,"props":2561,"children":2562},{"style":330},[2563],{"type":59,"value":343},{"type":54,"tag":273,"props":2565,"children":2566},{"style":285},[2567],{"type":59,"value":2568},"Custom button clicked",{"type":54,"tag":273,"props":2570,"children":2571},{"style":330},[2572],{"type":59,"value":343},{"type":54,"tag":273,"props":2574,"children":2575},{"style":374},[2576],{"type":59,"value":857},{"type":54,"tag":273,"props":2578,"children":2579},{"style":330},[2580],{"type":59,"value":348},{"type":54,"tag":273,"props":2582,"children":2584},{"class":275,"line":2583},43,[2585],{"type":54,"tag":273,"props":2586,"children":2587},{"style":330},[2588],{"type":59,"value":2589},"          }\n",{"type":54,"tag":273,"props":2591,"children":2593},{"class":275,"line":2592},44,[2594],{"type":54,"tag":273,"props":2595,"children":2596},{"style":330},[2597],{"type":59,"value":2335},{"type":54,"tag":273,"props":2599,"children":2601},{"class":275,"line":2600},45,[2602],{"type":54,"tag":273,"props":2603,"children":2604},{"style":319},[2605],{"type":59,"value":2606},"      ]\n",{"type":54,"tag":273,"props":2608,"children":2610},{"class":275,"line":2609},46,[2611],{"type":54,"tag":273,"props":2612,"children":2613},{"style":330},[2614],{"type":59,"value":2392},{"type":54,"tag":273,"props":2616,"children":2618},{"class":275,"line":2617},47,[2619],{"type":54,"tag":273,"props":2620,"children":2621},{"style":319},[2622],{"type":59,"value":2152},{"type":54,"tag":273,"props":2624,"children":2626},{"class":275,"line":2625},48,[2627],{"type":54,"tag":273,"props":2628,"children":2629},{"style":700},[2630],{"type":59,"value":2631},"    \u002F\u002F Active speaker indicator\n",{"type":54,"tag":273,"props":2633,"children":2635},{"class":275,"line":2634},49,[2636,2641,2645],{"type":54,"tag":273,"props":2637,"children":2638},{"style":374},[2639],{"type":59,"value":2640},"    activeSpaker",{"type":54,"tag":273,"props":2642,"children":2643},{"style":330},[2644],{"type":59,"value":924},{"type":54,"tag":273,"props":2646,"children":2647},{"style":330},[2648],{"type":59,"value":779},{"type":54,"tag":273,"props":2650,"children":2652},{"class":275,"line":2651},50,[2653,2658,2662,2666,2671],{"type":54,"tag":273,"props":2654,"children":2655},{"style":374},[2656],{"type":59,"value":2657},"      strokeColor",{"type":54,"tag":273,"props":2659,"children":2660},{"style":330},[2661],{"type":59,"value":924},{"type":54,"tag":273,"props":2663,"children":2664},{"style":330},[2665],{"type":59,"value":333},{"type":54,"tag":273,"props":2667,"children":2668},{"style":285},[2669],{"type":59,"value":2670},"#00FF00",{"type":54,"tag":273,"props":2672,"children":2673},{"style":330},[2674],{"type":59,"value":2132},{"type":54,"tag":273,"props":2676,"children":2678},{"class":275,"line":2677},51,[2679],{"type":54,"tag":273,"props":2680,"children":2681},{"style":330},[2682],{"type":59,"value":2683},"    }\n",{"type":54,"tag":273,"props":2685,"children":2687},{"class":275,"line":2686},52,[2688],{"type":54,"tag":273,"props":2689,"children":2690},{"style":330},[2691],{"type":59,"value":1388},{"type":54,"tag":273,"props":2693,"children":2695},{"class":275,"line":2694},53,[2696,2701,2705],{"type":54,"tag":273,"props":2697,"children":2698},{"style":330},[2699],{"type":59,"value":2700},"}",{"type":54,"tag":273,"props":2702,"children":2703},{"style":319},[2704],{"type":59,"value":857},{"type":54,"tag":273,"props":2706,"children":2707},{"style":330},[2708],{"type":59,"value":348},{"type":54,"tag":81,"props":2710,"children":2712},{"id":2711},"clientjoin-all-options",[2713],{"type":59,"value":2714},"client.join() - All Options",{"type":54,"tag":255,"props":2716,"children":2718},{"id":2717},"required-1",[2719],{"type":59,"value":1409},{"type":54,"tag":102,"props":2721,"children":2722},{},[2723,2741],{"type":54,"tag":106,"props":2724,"children":2725},{},[2726],{"type":54,"tag":110,"props":2727,"children":2728},{},[2729,2733,2737],{"type":54,"tag":114,"props":2730,"children":2731},{},[2732],{"type":59,"value":1423},{"type":54,"tag":114,"props":2734,"children":2735},{},[2736],{"type":59,"value":1428},{"type":54,"tag":114,"props":2738,"children":2739},{},[2740],{"type":59,"value":1433},{"type":54,"tag":125,"props":2742,"children":2743},{},[2744,2769,2794,2820],{"type":54,"tag":110,"props":2745,"children":2746},{},[2747,2756,2764],{"type":54,"tag":132,"props":2748,"children":2749},{},[2750],{"type":54,"tag":93,"props":2751,"children":2753},{"className":2752},[],[2754],{"type":59,"value":2755},"signature",{"type":54,"tag":132,"props":2757,"children":2758},{},[2759],{"type":54,"tag":93,"props":2760,"children":2762},{"className":2761},[],[2763],{"type":59,"value":1518},{"type":54,"tag":132,"props":2765,"children":2766},{},[2767],{"type":59,"value":2768},"SDK JWT from backend",{"type":54,"tag":110,"props":2770,"children":2771},{},[2772,2781,2789],{"type":54,"tag":132,"props":2773,"children":2774},{},[2775],{"type":54,"tag":93,"props":2776,"children":2778},{"className":2777},[],[2779],{"type":59,"value":2780},"sdkKey",{"type":54,"tag":132,"props":2782,"children":2783},{},[2784],{"type":54,"tag":93,"props":2785,"children":2787},{"className":2786},[],[2788],{"type":59,"value":1518},{"type":54,"tag":132,"props":2790,"children":2791},{},[2792],{"type":59,"value":2793},"SDK Key \u002F Client ID",{"type":54,"tag":110,"props":2795,"children":2796},{},[2797,2806,2815],{"type":54,"tag":132,"props":2798,"children":2799},{},[2800],{"type":54,"tag":93,"props":2801,"children":2803},{"className":2802},[],[2804],{"type":59,"value":2805},"meetingNumber",{"type":54,"tag":132,"props":2807,"children":2808},{},[2809],{"type":54,"tag":93,"props":2810,"children":2812},{"className":2811},[],[2813],{"type":59,"value":2814},"string | number",{"type":54,"tag":132,"props":2816,"children":2817},{},[2818],{"type":59,"value":2819},"Meeting number",{"type":54,"tag":110,"props":2821,"children":2822},{},[2823,2832,2840],{"type":54,"tag":132,"props":2824,"children":2825},{},[2826],{"type":54,"tag":93,"props":2827,"children":2829},{"className":2828},[],[2830],{"type":59,"value":2831},"userName",{"type":54,"tag":132,"props":2833,"children":2834},{},[2835],{"type":54,"tag":93,"props":2836,"children":2838},{"className":2837},[],[2839],{"type":59,"value":1518},{"type":54,"tag":132,"props":2841,"children":2842},{},[2843],{"type":59,"value":2844},"Display name",{"type":54,"tag":255,"props":2846,"children":2848},{"id":2847},"authentication",[2849],{"type":59,"value":2850},"Authentication",{"type":54,"tag":102,"props":2852,"children":2853},{},[2854,2877],{"type":54,"tag":106,"props":2855,"children":2856},{},[2857],{"type":54,"tag":110,"props":2858,"children":2859},{},[2860,2864,2868,2873],{"type":54,"tag":114,"props":2861,"children":2862},{},[2863],{"type":59,"value":1423},{"type":54,"tag":114,"props":2865,"children":2866},{},[2867],{"type":59,"value":1428},{"type":54,"tag":114,"props":2869,"children":2870},{},[2871],{"type":59,"value":2872},"When Required",{"type":54,"tag":114,"props":2874,"children":2875},{},[2876],{"type":59,"value":1433},{"type":54,"tag":125,"props":2878,"children":2879},{},[2880,2909,2939,2969],{"type":54,"tag":110,"props":2881,"children":2882},{},[2883,2891,2899,2904],{"type":54,"tag":132,"props":2884,"children":2885},{},[2886],{"type":54,"tag":93,"props":2887,"children":2889},{"className":2888},[],[2890],{"type":59,"value":201},{"type":54,"tag":132,"props":2892,"children":2893},{},[2894],{"type":54,"tag":93,"props":2895,"children":2897},{"className":2896},[],[2898],{"type":59,"value":1518},{"type":54,"tag":132,"props":2900,"children":2901},{},[2902],{"type":59,"value":2903},"If set",{"type":54,"tag":132,"props":2905,"children":2906},{},[2907],{"type":59,"value":2908},"Meeting password (lowercase!)",{"type":54,"tag":110,"props":2910,"children":2911},{},[2912,2921,2929,2934],{"type":54,"tag":132,"props":2913,"children":2914},{},[2915],{"type":54,"tag":93,"props":2916,"children":2918},{"className":2917},[],[2919],{"type":59,"value":2920},"zak",{"type":54,"tag":132,"props":2922,"children":2923},{},[2924],{"type":54,"tag":93,"props":2925,"children":2927},{"className":2926},[],[2928],{"type":59,"value":1518},{"type":54,"tag":132,"props":2930,"children":2931},{},[2932],{"type":59,"value":2933},"Starting as host",{"type":54,"tag":132,"props":2935,"children":2936},{},[2937],{"type":59,"value":2938},"Host's ZAK token",{"type":54,"tag":110,"props":2940,"children":2941},{},[2942,2951,2959,2964],{"type":54,"tag":132,"props":2943,"children":2944},{},[2945],{"type":54,"tag":93,"props":2946,"children":2948},{"className":2947},[],[2949],{"type":59,"value":2950},"tk",{"type":54,"tag":132,"props":2952,"children":2953},{},[2954],{"type":54,"tag":93,"props":2955,"children":2957},{"className":2956},[],[2958],{"type":59,"value":1518},{"type":54,"tag":132,"props":2960,"children":2961},{},[2962],{"type":59,"value":2963},"Registration",{"type":54,"tag":132,"props":2965,"children":2966},{},[2967],{"type":59,"value":2968},"Registrant token",{"type":54,"tag":110,"props":2970,"children":2971},{},[2972,2981,2989,2994],{"type":54,"tag":132,"props":2973,"children":2974},{},[2975],{"type":54,"tag":93,"props":2976,"children":2978},{"className":2977},[],[2979],{"type":59,"value":2980},"userEmail",{"type":54,"tag":132,"props":2982,"children":2983},{},[2984],{"type":54,"tag":93,"props":2985,"children":2987},{"className":2986},[],[2988],{"type":59,"value":1518},{"type":54,"tag":132,"props":2990,"children":2991},{},[2992],{"type":59,"value":2993},"Webinars",{"type":54,"tag":132,"props":2995,"children":2996},{},[2997],{"type":59,"value":2998},"User email",{"type":54,"tag":81,"props":3000,"children":3002},{"id":3001},"event-listeners",[3003],{"type":59,"value":3004},"Event Listeners",{"type":54,"tag":255,"props":3006,"children":3008},{"id":3007},"syntax",[3009],{"type":59,"value":3010},"Syntax",{"type":54,"tag":262,"props":3012,"children":3014},{"className":301,"code":3013,"language":303,"meta":267,"style":267},"\u002F\u002F Subscribe\nclient.on('event-name', callback);\n\n\u002F\u002F Unsubscribe\nclient.off('event-name', callback);\n",[3015],{"type":54,"tag":93,"props":3016,"children":3017},{"__ignoreMap":267},[3018,3026,3073,3080,3088],{"type":54,"tag":273,"props":3019,"children":3020},{"class":275,"line":276},[3021],{"type":54,"tag":273,"props":3022,"children":3023},{"style":700},[3024],{"type":59,"value":3025},"\u002F\u002F Subscribe\n",{"type":54,"tag":273,"props":3027,"children":3028},{"class":275,"line":419},[3029,3034,3038,3043,3047,3051,3056,3060,3064,3069],{"type":54,"tag":273,"props":3030,"children":3031},{"style":319},[3032],{"type":59,"value":3033},"client",{"type":54,"tag":273,"props":3035,"children":3036},{"style":330},[3037],{"type":59,"value":730},{"type":54,"tag":273,"props":3039,"children":3040},{"style":733},[3041],{"type":59,"value":3042},"on",{"type":54,"tag":273,"props":3044,"children":3045},{"style":319},[3046],{"type":59,"value":839},{"type":54,"tag":273,"props":3048,"children":3049},{"style":330},[3050],{"type":59,"value":343},{"type":54,"tag":273,"props":3052,"children":3053},{"style":285},[3054],{"type":59,"value":3055},"event-name",{"type":54,"tag":273,"props":3057,"children":3058},{"style":330},[3059],{"type":59,"value":343},{"type":54,"tag":273,"props":3061,"children":3062},{"style":330},[3063],{"type":59,"value":1202},{"type":54,"tag":273,"props":3065,"children":3066},{"style":319},[3067],{"type":59,"value":3068}," callback)",{"type":54,"tag":273,"props":3070,"children":3071},{"style":330},[3072],{"type":59,"value":348},{"type":54,"tag":273,"props":3074,"children":3075},{"class":275,"line":464},[3076],{"type":54,"tag":273,"props":3077,"children":3078},{"emptyLinePlaceholder":691},[3079],{"type":59,"value":694},{"type":54,"tag":273,"props":3081,"children":3082},{"class":275,"line":509},[3083],{"type":54,"tag":273,"props":3084,"children":3085},{"style":700},[3086],{"type":59,"value":3087},"\u002F\u002F Unsubscribe\n",{"type":54,"tag":273,"props":3089,"children":3090},{"class":275,"line":554},[3091,3095,3099,3104,3108,3112,3116,3120,3124,3128],{"type":54,"tag":273,"props":3092,"children":3093},{"style":319},[3094],{"type":59,"value":3033},{"type":54,"tag":273,"props":3096,"children":3097},{"style":330},[3098],{"type":59,"value":730},{"type":54,"tag":273,"props":3100,"children":3101},{"style":733},[3102],{"type":59,"value":3103},"off",{"type":54,"tag":273,"props":3105,"children":3106},{"style":319},[3107],{"type":59,"value":839},{"type":54,"tag":273,"props":3109,"children":3110},{"style":330},[3111],{"type":59,"value":343},{"type":54,"tag":273,"props":3113,"children":3114},{"style":285},[3115],{"type":59,"value":3055},{"type":54,"tag":273,"props":3117,"children":3118},{"style":330},[3119],{"type":59,"value":343},{"type":54,"tag":273,"props":3121,"children":3122},{"style":330},[3123],{"type":59,"value":1202},{"type":54,"tag":273,"props":3125,"children":3126},{"style":319},[3127],{"type":59,"value":3068},{"type":54,"tag":273,"props":3129,"children":3130},{"style":330},[3131],{"type":59,"value":348},{"type":54,"tag":255,"props":3133,"children":3135},{"id":3134},"connection-events",[3136],{"type":59,"value":3137},"Connection Events",{"type":54,"tag":262,"props":3139,"children":3141},{"className":301,"code":3140,"language":303,"meta":267,"style":267},"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",[3142],{"type":54,"tag":93,"props":3143,"children":3144},{"__ignoreMap":267},[3145,3203,3211,3270,3278,3328,3385,3392],{"type":54,"tag":273,"props":3146,"children":3147},{"class":275,"line":276},[3148,3152,3156,3160,3164,3168,3173,3177,3181,3185,3191,3195,3199],{"type":54,"tag":273,"props":3149,"children":3150},{"style":319},[3151],{"type":59,"value":3033},{"type":54,"tag":273,"props":3153,"children":3154},{"style":330},[3155],{"type":59,"value":730},{"type":54,"tag":273,"props":3157,"children":3158},{"style":733},[3159],{"type":59,"value":3042},{"type":54,"tag":273,"props":3161,"children":3162},{"style":319},[3163],{"type":59,"value":839},{"type":54,"tag":273,"props":3165,"children":3166},{"style":330},[3167],{"type":59,"value":343},{"type":54,"tag":273,"props":3169,"children":3170},{"style":285},[3171],{"type":59,"value":3172},"connection-change",{"type":54,"tag":273,"props":3174,"children":3175},{"style":330},[3176],{"type":59,"value":343},{"type":54,"tag":273,"props":3178,"children":3179},{"style":330},[3180],{"type":59,"value":1202},{"type":54,"tag":273,"props":3182,"children":3183},{"style":330},[3184],{"type":59,"value":1315},{"type":54,"tag":273,"props":3186,"children":3188},{"style":3187},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[3189],{"type":59,"value":3190},"payload",{"type":54,"tag":273,"props":3192,"children":3193},{"style":330},[3194],{"type":59,"value":857},{"type":54,"tag":273,"props":3196,"children":3197},{"style":380},[3198],{"type":59,"value":2534},{"type":54,"tag":273,"props":3200,"children":3201},{"style":330},[3202],{"type":59,"value":779},{"type":54,"tag":273,"props":3204,"children":3205},{"class":275,"line":419},[3206],{"type":54,"tag":273,"props":3207,"children":3208},{"style":700},[3209],{"type":59,"value":3210},"  \u002F\u002F payload.state: 'Connecting', 'Connected', 'Reconnecting', 'Closed'\n",{"type":54,"tag":273,"props":3212,"children":3213},{"class":275,"line":464},[3214,3219,3223,3227,3231,3235,3240,3244,3248,3253,3257,3262,3266],{"type":54,"tag":273,"props":3215,"children":3216},{"style":319},[3217],{"type":59,"value":3218},"  console",{"type":54,"tag":273,"props":3220,"children":3221},{"style":330},[3222],{"type":59,"value":730},{"type":54,"tag":273,"props":3224,"children":3225},{"style":733},[3226],{"type":59,"value":1271},{"type":54,"tag":273,"props":3228,"children":3229},{"style":374},[3230],{"type":59,"value":839},{"type":54,"tag":273,"props":3232,"children":3233},{"style":330},[3234],{"type":59,"value":343},{"type":54,"tag":273,"props":3236,"children":3237},{"style":285},[3238],{"type":59,"value":3239},"Connection state:",{"type":54,"tag":273,"props":3241,"children":3242},{"style":330},[3243],{"type":59,"value":343},{"type":54,"tag":273,"props":3245,"children":3246},{"style":330},[3247],{"type":59,"value":1202},{"type":54,"tag":273,"props":3249,"children":3250},{"style":319},[3251],{"type":59,"value":3252}," payload",{"type":54,"tag":273,"props":3254,"children":3255},{"style":330},[3256],{"type":59,"value":730},{"type":54,"tag":273,"props":3258,"children":3259},{"style":319},[3260],{"type":59,"value":3261},"state",{"type":54,"tag":273,"props":3263,"children":3264},{"style":374},[3265],{"type":59,"value":857},{"type":54,"tag":273,"props":3267,"children":3268},{"style":330},[3269],{"type":59,"value":348},{"type":54,"tag":273,"props":3271,"children":3272},{"class":275,"line":509},[3273],{"type":54,"tag":273,"props":3274,"children":3275},{"style":374},[3276],{"type":59,"value":3277},"  \n",{"type":54,"tag":273,"props":3279,"children":3280},{"class":275,"line":554},[3281,3286,3290,3294,3298,3302,3307,3311,3316,3320,3324],{"type":54,"tag":273,"props":3282,"children":3283},{"style":313},[3284],{"type":59,"value":3285},"  if",{"type":54,"tag":273,"props":3287,"children":3288},{"style":374},[3289],{"type":59,"value":1315},{"type":54,"tag":273,"props":3291,"children":3292},{"style":319},[3293],{"type":59,"value":3190},{"type":54,"tag":273,"props":3295,"children":3296},{"style":330},[3297],{"type":59,"value":730},{"type":54,"tag":273,"props":3299,"children":3300},{"style":319},[3301],{"type":59,"value":3261},{"type":54,"tag":273,"props":3303,"children":3304},{"style":330},[3305],{"type":59,"value":3306}," ===",{"type":54,"tag":273,"props":3308,"children":3309},{"style":330},[3310],{"type":59,"value":333},{"type":54,"tag":273,"props":3312,"children":3313},{"style":285},[3314],{"type":59,"value":3315},"Closed",{"type":54,"tag":273,"props":3317,"children":3318},{"style":330},[3319],{"type":59,"value":343},{"type":54,"tag":273,"props":3321,"children":3322},{"style":374},[3323],{"type":59,"value":1325},{"type":54,"tag":273,"props":3325,"children":3326},{"style":330},[3327],{"type":59,"value":910},{"type":54,"tag":273,"props":3329,"children":3330},{"class":275,"line":599},[3331,3335,3339,3343,3347,3351,3356,3360,3364,3368,3372,3377,3381],{"type":54,"tag":273,"props":3332,"children":3333},{"style":319},[3334],{"type":59,"value":1262},{"type":54,"tag":273,"props":3336,"children":3337},{"style":330},[3338],{"type":59,"value":730},{"type":54,"tag":273,"props":3340,"children":3341},{"style":733},[3342],{"type":59,"value":1271},{"type":54,"tag":273,"props":3344,"children":3345},{"style":374},[3346],{"type":59,"value":839},{"type":54,"tag":273,"props":3348,"children":3349},{"style":330},[3350],{"type":59,"value":343},{"type":54,"tag":273,"props":3352,"children":3353},{"style":285},[3354],{"type":59,"value":3355},"Reason:",{"type":54,"tag":273,"props":3357,"children":3358},{"style":330},[3359],{"type":59,"value":343},{"type":54,"tag":273,"props":3361,"children":3362},{"style":330},[3363],{"type":59,"value":1202},{"type":54,"tag":273,"props":3365,"children":3366},{"style":319},[3367],{"type":59,"value":3252},{"type":54,"tag":273,"props":3369,"children":3370},{"style":330},[3371],{"type":59,"value":730},{"type":54,"tag":273,"props":3373,"children":3374},{"style":319},[3375],{"type":59,"value":3376},"reason",{"type":54,"tag":273,"props":3378,"children":3379},{"style":374},[3380],{"type":59,"value":857},{"type":54,"tag":273,"props":3382,"children":3383},{"style":330},[3384],{"type":59,"value":348},{"type":54,"tag":273,"props":3386,"children":3387},{"class":275,"line":782},[3388],{"type":54,"tag":273,"props":3389,"children":3390},{"style":330},[3391],{"type":59,"value":1388},{"type":54,"tag":273,"props":3393,"children":3394},{"class":275,"line":795},[3395,3399,3403],{"type":54,"tag":273,"props":3396,"children":3397},{"style":330},[3398],{"type":59,"value":2700},{"type":54,"tag":273,"props":3400,"children":3401},{"style":319},[3402],{"type":59,"value":857},{"type":54,"tag":273,"props":3404,"children":3405},{"style":330},[3406],{"type":59,"value":348},{"type":54,"tag":255,"props":3408,"children":3410},{"id":3409},"user-events",[3411],{"type":59,"value":3412},"User Events",{"type":54,"tag":262,"props":3414,"children":3416},{"className":301,"code":3415,"language":303,"meta":267,"style":267},"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",[3417],{"type":54,"tag":93,"props":3418,"children":3419},{"__ignoreMap":267},[3420,3476,3484,3532,3566,3624,3681,3696,3711,3718,3774,3782,3830,3845,3852,3908,3916,3964],{"type":54,"tag":273,"props":3421,"children":3422},{"class":275,"line":276},[3423,3427,3431,3435,3439,3443,3448,3452,3456,3460,3464,3468,3472],{"type":54,"tag":273,"props":3424,"children":3425},{"style":319},[3426],{"type":59,"value":3033},{"type":54,"tag":273,"props":3428,"children":3429},{"style":330},[3430],{"type":59,"value":730},{"type":54,"tag":273,"props":3432,"children":3433},{"style":733},[3434],{"type":59,"value":3042},{"type":54,"tag":273,"props":3436,"children":3437},{"style":319},[3438],{"type":59,"value":839},{"type":54,"tag":273,"props":3440,"children":3441},{"style":330},[3442],{"type":59,"value":343},{"type":54,"tag":273,"props":3444,"children":3445},{"style":285},[3446],{"type":59,"value":3447},"user-added",{"type":54,"tag":273,"props":3449,"children":3450},{"style":330},[3451],{"type":59,"value":343},{"type":54,"tag":273,"props":3453,"children":3454},{"style":330},[3455],{"type":59,"value":1202},{"type":54,"tag":273,"props":3457,"children":3458},{"style":330},[3459],{"type":59,"value":1315},{"type":54,"tag":273,"props":3461,"children":3462},{"style":3187},[3463],{"type":59,"value":3190},{"type":54,"tag":273,"props":3465,"children":3466},{"style":330},[3467],{"type":59,"value":857},{"type":54,"tag":273,"props":3469,"children":3470},{"style":380},[3471],{"type":59,"value":2534},{"type":54,"tag":273,"props":3473,"children":3474},{"style":330},[3475],{"type":59,"value":779},{"type":54,"tag":273,"props":3477,"children":3478},{"class":275,"line":419},[3479],{"type":54,"tag":273,"props":3480,"children":3481},{"style":700},[3482],{"type":59,"value":3483},"  \u002F\u002F Array of users who joined\n",{"type":54,"tag":273,"props":3485,"children":3486},{"class":275,"line":464},[3487,3491,3495,3499,3503,3507,3512,3516,3520,3524,3528],{"type":54,"tag":273,"props":3488,"children":3489},{"style":319},[3490],{"type":59,"value":3218},{"type":54,"tag":273,"props":3492,"children":3493},{"style":330},[3494],{"type":59,"value":730},{"type":54,"tag":273,"props":3496,"children":3497},{"style":733},[3498],{"type":59,"value":1271},{"type":54,"tag":273,"props":3500,"children":3501},{"style":374},[3502],{"type":59,"value":839},{"type":54,"tag":273,"props":3504,"children":3505},{"style":330},[3506],{"type":59,"value":343},{"type":54,"tag":273,"props":3508,"children":3509},{"style":285},[3510],{"type":59,"value":3511},"Users added:",{"type":54,"tag":273,"props":3513,"children":3514},{"style":330},[3515],{"type":59,"value":343},{"type":54,"tag":273,"props":3517,"children":3518},{"style":330},[3519],{"type":59,"value":1202},{"type":54,"tag":273,"props":3521,"children":3522},{"style":319},[3523],{"type":59,"value":3252},{"type":54,"tag":273,"props":3525,"children":3526},{"style":374},[3527],{"type":59,"value":857},{"type":54,"tag":273,"props":3529,"children":3530},{"style":330},[3531],{"type":59,"value":348},{"type":54,"tag":273,"props":3533,"children":3534},{"class":275,"line":509},[3535,3540,3544,3549,3553,3558,3562],{"type":54,"tag":273,"props":3536,"children":3537},{"style":319},[3538],{"type":59,"value":3539},"  payload",{"type":54,"tag":273,"props":3541,"children":3542},{"style":330},[3543],{"type":59,"value":730},{"type":54,"tag":273,"props":3545,"children":3546},{"style":733},[3547],{"type":59,"value":3548},"forEach",{"type":54,"tag":273,"props":3550,"children":3551},{"style":374},[3552],{"type":59,"value":839},{"type":54,"tag":273,"props":3554,"children":3555},{"style":3187},[3556],{"type":59,"value":3557},"user",{"type":54,"tag":273,"props":3559,"children":3560},{"style":380},[3561],{"type":59,"value":2534},{"type":54,"tag":273,"props":3563,"children":3564},{"style":330},[3565],{"type":59,"value":779},{"type":54,"tag":273,"props":3567,"children":3568},{"class":275,"line":554},[3569,3573,3577,3581,3585,3589,3594,3598,3602,3607,3611,3616,3620],{"type":54,"tag":273,"props":3570,"children":3571},{"style":319},[3572],{"type":59,"value":1262},{"type":54,"tag":273,"props":3574,"children":3575},{"style":330},[3576],{"type":59,"value":730},{"type":54,"tag":273,"props":3578,"children":3579},{"style":733},[3580],{"type":59,"value":1271},{"type":54,"tag":273,"props":3582,"children":3583},{"style":374},[3584],{"type":59,"value":839},{"type":54,"tag":273,"props":3586,"children":3587},{"style":330},[3588],{"type":59,"value":343},{"type":54,"tag":273,"props":3590,"children":3591},{"style":285},[3592],{"type":59,"value":3593},"User ID:",{"type":54,"tag":273,"props":3595,"children":3596},{"style":330},[3597],{"type":59,"value":343},{"type":54,"tag":273,"props":3599,"children":3600},{"style":330},[3601],{"type":59,"value":1202},{"type":54,"tag":273,"props":3603,"children":3604},{"style":319},[3605],{"type":59,"value":3606}," user",{"type":54,"tag":273,"props":3608,"children":3609},{"style":330},[3610],{"type":59,"value":730},{"type":54,"tag":273,"props":3612,"children":3613},{"style":319},[3614],{"type":59,"value":3615},"oderId",{"type":54,"tag":273,"props":3617,"children":3618},{"style":374},[3619],{"type":59,"value":857},{"type":54,"tag":273,"props":3621,"children":3622},{"style":330},[3623],{"type":59,"value":348},{"type":54,"tag":273,"props":3625,"children":3626},{"class":275,"line":599},[3627,3631,3635,3639,3643,3647,3652,3656,3660,3664,3668,3673,3677],{"type":54,"tag":273,"props":3628,"children":3629},{"style":319},[3630],{"type":59,"value":1262},{"type":54,"tag":273,"props":3632,"children":3633},{"style":330},[3634],{"type":59,"value":730},{"type":54,"tag":273,"props":3636,"children":3637},{"style":733},[3638],{"type":59,"value":1271},{"type":54,"tag":273,"props":3640,"children":3641},{"style":374},[3642],{"type":59,"value":839},{"type":54,"tag":273,"props":3644,"children":3645},{"style":330},[3646],{"type":59,"value":343},{"type":54,"tag":273,"props":3648,"children":3649},{"style":285},[3650],{"type":59,"value":3651},"Name:",{"type":54,"tag":273,"props":3653,"children":3654},{"style":330},[3655],{"type":59,"value":343},{"type":54,"tag":273,"props":3657,"children":3658},{"style":330},[3659],{"type":59,"value":1202},{"type":54,"tag":273,"props":3661,"children":3662},{"style":319},[3663],{"type":59,"value":3606},{"type":54,"tag":273,"props":3665,"children":3666},{"style":330},[3667],{"type":59,"value":730},{"type":54,"tag":273,"props":3669,"children":3670},{"style":319},[3671],{"type":59,"value":3672},"displayName",{"type":54,"tag":273,"props":3674,"children":3675},{"style":374},[3676],{"type":59,"value":857},{"type":54,"tag":273,"props":3678,"children":3679},{"style":330},[3680],{"type":59,"value":348},{"type":54,"tag":273,"props":3682,"children":3683},{"class":275,"line":782},[3684,3688,3692],{"type":54,"tag":273,"props":3685,"children":3686},{"style":330},[3687],{"type":59,"value":1305},{"type":54,"tag":273,"props":3689,"children":3690},{"style":374},[3691],{"type":59,"value":857},{"type":54,"tag":273,"props":3693,"children":3694},{"style":330},[3695],{"type":59,"value":348},{"type":54,"tag":273,"props":3697,"children":3698},{"class":275,"line":795},[3699,3703,3707],{"type":54,"tag":273,"props":3700,"children":3701},{"style":330},[3702],{"type":59,"value":2700},{"type":54,"tag":273,"props":3704,"children":3705},{"style":319},[3706],{"type":59,"value":857},{"type":54,"tag":273,"props":3708,"children":3709},{"style":330},[3710],{"type":59,"value":348},{"type":54,"tag":273,"props":3712,"children":3713},{"class":275,"line":804},[3714],{"type":54,"tag":273,"props":3715,"children":3716},{"emptyLinePlaceholder":691},[3717],{"type":59,"value":694},{"type":54,"tag":273,"props":3719,"children":3720},{"class":275,"line":864},[3721,3725,3729,3733,3737,3741,3746,3750,3754,3758,3762,3766,3770],{"type":54,"tag":273,"props":3722,"children":3723},{"style":319},[3724],{"type":59,"value":3033},{"type":54,"tag":273,"props":3726,"children":3727},{"style":330},[3728],{"type":59,"value":730},{"type":54,"tag":273,"props":3730,"children":3731},{"style":733},[3732],{"type":59,"value":3042},{"type":54,"tag":273,"props":3734,"children":3735},{"style":319},[3736],{"type":59,"value":839},{"type":54,"tag":273,"props":3738,"children":3739},{"style":330},[3740],{"type":59,"value":343},{"type":54,"tag":273,"props":3742,"children":3743},{"style":285},[3744],{"type":59,"value":3745},"user-removed",{"type":54,"tag":273,"props":3747,"children":3748},{"style":330},[3749],{"type":59,"value":343},{"type":54,"tag":273,"props":3751,"children":3752},{"style":330},[3753],{"type":59,"value":1202},{"type":54,"tag":273,"props":3755,"children":3756},{"style":330},[3757],{"type":59,"value":1315},{"type":54,"tag":273,"props":3759,"children":3760},{"style":3187},[3761],{"type":59,"value":3190},{"type":54,"tag":273,"props":3763,"children":3764},{"style":330},[3765],{"type":59,"value":857},{"type":54,"tag":273,"props":3767,"children":3768},{"style":380},[3769],{"type":59,"value":2534},{"type":54,"tag":273,"props":3771,"children":3772},{"style":330},[3773],{"type":59,"value":779},{"type":54,"tag":273,"props":3775,"children":3776},{"class":275,"line":872},[3777],{"type":54,"tag":273,"props":3778,"children":3779},{"style":700},[3780],{"type":59,"value":3781},"  \u002F\u002F Array of users who left\n",{"type":54,"tag":273,"props":3783,"children":3784},{"class":275,"line":881},[3785,3789,3793,3797,3801,3805,3810,3814,3818,3822,3826],{"type":54,"tag":273,"props":3786,"children":3787},{"style":319},[3788],{"type":59,"value":3218},{"type":54,"tag":273,"props":3790,"children":3791},{"style":330},[3792],{"type":59,"value":730},{"type":54,"tag":273,"props":3794,"children":3795},{"style":733},[3796],{"type":59,"value":1271},{"type":54,"tag":273,"props":3798,"children":3799},{"style":374},[3800],{"type":59,"value":839},{"type":54,"tag":273,"props":3802,"children":3803},{"style":330},[3804],{"type":59,"value":343},{"type":54,"tag":273,"props":3806,"children":3807},{"style":285},[3808],{"type":59,"value":3809},"Users removed:",{"type":54,"tag":273,"props":3811,"children":3812},{"style":330},[3813],{"type":59,"value":343},{"type":54,"tag":273,"props":3815,"children":3816},{"style":330},[3817],{"type":59,"value":1202},{"type":54,"tag":273,"props":3819,"children":3820},{"style":319},[3821],{"type":59,"value":3252},{"type":54,"tag":273,"props":3823,"children":3824},{"style":374},[3825],{"type":59,"value":857},{"type":54,"tag":273,"props":3827,"children":3828},{"style":330},[3829],{"type":59,"value":348},{"type":54,"tag":273,"props":3831,"children":3832},{"class":275,"line":913},[3833,3837,3841],{"type":54,"tag":273,"props":3834,"children":3835},{"style":330},[3836],{"type":59,"value":2700},{"type":54,"tag":273,"props":3838,"children":3839},{"style":319},[3840],{"type":59,"value":857},{"type":54,"tag":273,"props":3842,"children":3843},{"style":330},[3844],{"type":59,"value":348},{"type":54,"tag":273,"props":3846,"children":3847},{"class":275,"line":936},[3848],{"type":54,"tag":273,"props":3849,"children":3850},{"emptyLinePlaceholder":691},[3851],{"type":59,"value":694},{"type":54,"tag":273,"props":3853,"children":3854},{"class":275,"line":966},[3855,3859,3863,3867,3871,3875,3880,3884,3888,3892,3896,3900,3904],{"type":54,"tag":273,"props":3856,"children":3857},{"style":319},[3858],{"type":59,"value":3033},{"type":54,"tag":273,"props":3860,"children":3861},{"style":330},[3862],{"type":59,"value":730},{"type":54,"tag":273,"props":3864,"children":3865},{"style":733},[3866],{"type":59,"value":3042},{"type":54,"tag":273,"props":3868,"children":3869},{"style":319},[3870],{"type":59,"value":839},{"type":54,"tag":273,"props":3872,"children":3873},{"style":330},[3874],{"type":59,"value":343},{"type":54,"tag":273,"props":3876,"children":3877},{"style":285},[3878],{"type":59,"value":3879},"user-updated",{"type":54,"tag":273,"props":3881,"children":3882},{"style":330},[3883],{"type":59,"value":343},{"type":54,"tag":273,"props":3885,"children":3886},{"style":330},[3887],{"type":59,"value":1202},{"type":54,"tag":273,"props":3889,"children":3890},{"style":330},[3891],{"type":59,"value":1315},{"type":54,"tag":273,"props":3893,"children":3894},{"style":3187},[3895],{"type":59,"value":3190},{"type":54,"tag":273,"props":3897,"children":3898},{"style":330},[3899],{"type":59,"value":857},{"type":54,"tag":273,"props":3901,"children":3902},{"style":380},[3903],{"type":59,"value":2534},{"type":54,"tag":273,"props":3905,"children":3906},{"style":330},[3907],{"type":59,"value":779},{"type":54,"tag":273,"props":3909,"children":3910},{"class":275,"line":989},[3911],{"type":54,"tag":273,"props":3912,"children":3913},{"style":700},[3914],{"type":59,"value":3915},"  \u002F\u002F Array of users whose properties changed\n",{"type":54,"tag":273,"props":3917,"children":3918},{"class":275,"line":1010},[3919,3923,3927,3931,3935,3939,3944,3948,3952,3956,3960],{"type":54,"tag":273,"props":3920,"children":3921},{"style":319},[3922],{"type":59,"value":3218},{"type":54,"tag":273,"props":3924,"children":3925},{"style":330},[3926],{"type":59,"value":730},{"type":54,"tag":273,"props":3928,"children":3929},{"style":733},[3930],{"type":59,"value":1271},{"type":54,"tag":273,"props":3932,"children":3933},{"style":374},[3934],{"type":59,"value":839},{"type":54,"tag":273,"props":3936,"children":3937},{"style":330},[3938],{"type":59,"value":343},{"type":54,"tag":273,"props":3940,"children":3941},{"style":285},[3942],{"type":59,"value":3943},"Users updated:",{"type":54,"tag":273,"props":3945,"children":3946},{"style":330},[3947],{"type":59,"value":343},{"type":54,"tag":273,"props":3949,"children":3950},{"style":330},[3951],{"type":59,"value":1202},{"type":54,"tag":273,"props":3953,"children":3954},{"style":319},[3955],{"type":59,"value":3252},{"type":54,"tag":273,"props":3957,"children":3958},{"style":374},[3959],{"type":59,"value":857},{"type":54,"tag":273,"props":3961,"children":3962},{"style":330},[3963],{"type":59,"value":348},{"type":54,"tag":273,"props":3965,"children":3966},{"class":275,"line":1031},[3967,3971,3975],{"type":54,"tag":273,"props":3968,"children":3969},{"style":330},[3970],{"type":59,"value":2700},{"type":54,"tag":273,"props":3972,"children":3973},{"style":319},[3974],{"type":59,"value":857},{"type":54,"tag":273,"props":3976,"children":3977},{"style":330},[3978],{"type":59,"value":348},{"type":54,"tag":255,"props":3980,"children":3982},{"id":3981},"audio-events",[3983],{"type":59,"value":3984},"Audio Events",{"type":54,"tag":262,"props":3986,"children":3988},{"className":301,"code":3987,"language":303,"meta":267,"style":267},"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",[3989],{"type":54,"tag":93,"props":3990,"children":3991},{"__ignoreMap":267},[3992,4048,4056,4104,4119,4126,4182,4230],{"type":54,"tag":273,"props":3993,"children":3994},{"class":275,"line":276},[3995,3999,4003,4007,4011,4015,4020,4024,4028,4032,4036,4040,4044],{"type":54,"tag":273,"props":3996,"children":3997},{"style":319},[3998],{"type":59,"value":3033},{"type":54,"tag":273,"props":4000,"children":4001},{"style":330},[4002],{"type":59,"value":730},{"type":54,"tag":273,"props":4004,"children":4005},{"style":733},[4006],{"type":59,"value":3042},{"type":54,"tag":273,"props":4008,"children":4009},{"style":319},[4010],{"type":59,"value":839},{"type":54,"tag":273,"props":4012,"children":4013},{"style":330},[4014],{"type":59,"value":343},{"type":54,"tag":273,"props":4016,"children":4017},{"style":285},[4018],{"type":59,"value":4019},"active-speaker",{"type":54,"tag":273,"props":4021,"children":4022},{"style":330},[4023],{"type":59,"value":343},{"type":54,"tag":273,"props":4025,"children":4026},{"style":330},[4027],{"type":59,"value":1202},{"type":54,"tag":273,"props":4029,"children":4030},{"style":330},[4031],{"type":59,"value":1315},{"type":54,"tag":273,"props":4033,"children":4034},{"style":3187},[4035],{"type":59,"value":3190},{"type":54,"tag":273,"props":4037,"children":4038},{"style":330},[4039],{"type":59,"value":857},{"type":54,"tag":273,"props":4041,"children":4042},{"style":380},[4043],{"type":59,"value":2534},{"type":54,"tag":273,"props":4045,"children":4046},{"style":330},[4047],{"type":59,"value":779},{"type":54,"tag":273,"props":4049,"children":4050},{"class":275,"line":419},[4051],{"type":54,"tag":273,"props":4052,"children":4053},{"style":700},[4054],{"type":59,"value":4055},"  \u002F\u002F Current active speaker\n",{"type":54,"tag":273,"props":4057,"children":4058},{"class":275,"line":464},[4059,4063,4067,4071,4075,4079,4084,4088,4092,4096,4100],{"type":54,"tag":273,"props":4060,"children":4061},{"style":319},[4062],{"type":59,"value":3218},{"type":54,"tag":273,"props":4064,"children":4065},{"style":330},[4066],{"type":59,"value":730},{"type":54,"tag":273,"props":4068,"children":4069},{"style":733},[4070],{"type":59,"value":1271},{"type":54,"tag":273,"props":4072,"children":4073},{"style":374},[4074],{"type":59,"value":839},{"type":54,"tag":273,"props":4076,"children":4077},{"style":330},[4078],{"type":59,"value":343},{"type":54,"tag":273,"props":4080,"children":4081},{"style":285},[4082],{"type":59,"value":4083},"Active speaker:",{"type":54,"tag":273,"props":4085,"children":4086},{"style":330},[4087],{"type":59,"value":343},{"type":54,"tag":273,"props":4089,"children":4090},{"style":330},[4091],{"type":59,"value":1202},{"type":54,"tag":273,"props":4093,"children":4094},{"style":319},[4095],{"type":59,"value":3252},{"type":54,"tag":273,"props":4097,"children":4098},{"style":374},[4099],{"type":59,"value":857},{"type":54,"tag":273,"props":4101,"children":4102},{"style":330},[4103],{"type":59,"value":348},{"type":54,"tag":273,"props":4105,"children":4106},{"class":275,"line":509},[4107,4111,4115],{"type":54,"tag":273,"props":4108,"children":4109},{"style":330},[4110],{"type":59,"value":2700},{"type":54,"tag":273,"props":4112,"children":4113},{"style":319},[4114],{"type":59,"value":857},{"type":54,"tag":273,"props":4116,"children":4117},{"style":330},[4118],{"type":59,"value":348},{"type":54,"tag":273,"props":4120,"children":4121},{"class":275,"line":554},[4122],{"type":54,"tag":273,"props":4123,"children":4124},{"emptyLinePlaceholder":691},[4125],{"type":59,"value":694},{"type":54,"tag":273,"props":4127,"children":4128},{"class":275,"line":599},[4129,4133,4137,4141,4145,4149,4154,4158,4162,4166,4170,4174,4178],{"type":54,"tag":273,"props":4130,"children":4131},{"style":319},[4132],{"type":59,"value":3033},{"type":54,"tag":273,"props":4134,"children":4135},{"style":330},[4136],{"type":59,"value":730},{"type":54,"tag":273,"props":4138,"children":4139},{"style":733},[4140],{"type":59,"value":3042},{"type":54,"tag":273,"props":4142,"children":4143},{"style":319},[4144],{"type":59,"value":839},{"type":54,"tag":273,"props":4146,"children":4147},{"style":330},[4148],{"type":59,"value":343},{"type":54,"tag":273,"props":4150,"children":4151},{"style":285},[4152],{"type":59,"value":4153},"audio-statistic-data-change",{"type":54,"tag":273,"props":4155,"children":4156},{"style":330},[4157],{"type":59,"value":343},{"type":54,"tag":273,"props":4159,"children":4160},{"style":330},[4161],{"type":59,"value":1202},{"type":54,"tag":273,"props":4163,"children":4164},{"style":330},[4165],{"type":59,"value":1315},{"type":54,"tag":273,"props":4167,"children":4168},{"style":3187},[4169],{"type":59,"value":3190},{"type":54,"tag":273,"props":4171,"children":4172},{"style":330},[4173],{"type":59,"value":857},{"type":54,"tag":273,"props":4175,"children":4176},{"style":380},[4177],{"type":59,"value":2534},{"type":54,"tag":273,"props":4179,"children":4180},{"style":330},[4181],{"type":59,"value":779},{"type":54,"tag":273,"props":4183,"children":4184},{"class":275,"line":782},[4185,4189,4193,4197,4201,4205,4210,4214,4218,4222,4226],{"type":54,"tag":273,"props":4186,"children":4187},{"style":319},[4188],{"type":59,"value":3218},{"type":54,"tag":273,"props":4190,"children":4191},{"style":330},[4192],{"type":59,"value":730},{"type":54,"tag":273,"props":4194,"children":4195},{"style":733},[4196],{"type":59,"value":1271},{"type":54,"tag":273,"props":4198,"children":4199},{"style":374},[4200],{"type":59,"value":839},{"type":54,"tag":273,"props":4202,"children":4203},{"style":330},[4204],{"type":59,"value":343},{"type":54,"tag":273,"props":4206,"children":4207},{"style":285},[4208],{"type":59,"value":4209},"Audio stats:",{"type":54,"tag":273,"props":4211,"children":4212},{"style":330},[4213],{"type":59,"value":343},{"type":54,"tag":273,"props":4215,"children":4216},{"style":330},[4217],{"type":59,"value":1202},{"type":54,"tag":273,"props":4219,"children":4220},{"style":319},[4221],{"type":59,"value":3252},{"type":54,"tag":273,"props":4223,"children":4224},{"style":374},[4225],{"type":59,"value":857},{"type":54,"tag":273,"props":4227,"children":4228},{"style":330},[4229],{"type":59,"value":348},{"type":54,"tag":273,"props":4231,"children":4232},{"class":275,"line":795},[4233,4237,4241],{"type":54,"tag":273,"props":4234,"children":4235},{"style":330},[4236],{"type":59,"value":2700},{"type":54,"tag":273,"props":4238,"children":4239},{"style":319},[4240],{"type":59,"value":857},{"type":54,"tag":273,"props":4242,"children":4243},{"style":330},[4244],{"type":59,"value":348},{"type":54,"tag":255,"props":4246,"children":4248},{"id":4247},"video-events",[4249],{"type":59,"value":4250},"Video Events",{"type":54,"tag":262,"props":4252,"children":4254},{"className":301,"code":4253,"language":303,"meta":267,"style":267},"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",[4255],{"type":54,"tag":93,"props":4256,"children":4257},{"__ignoreMap":267},[4258,4314,4322,4370,4385,4392,4448,4496],{"type":54,"tag":273,"props":4259,"children":4260},{"class":275,"line":276},[4261,4265,4269,4273,4277,4281,4286,4290,4294,4298,4302,4306,4310],{"type":54,"tag":273,"props":4262,"children":4263},{"style":319},[4264],{"type":59,"value":3033},{"type":54,"tag":273,"props":4266,"children":4267},{"style":330},[4268],{"type":59,"value":730},{"type":54,"tag":273,"props":4270,"children":4271},{"style":733},[4272],{"type":59,"value":3042},{"type":54,"tag":273,"props":4274,"children":4275},{"style":319},[4276],{"type":59,"value":839},{"type":54,"tag":273,"props":4278,"children":4279},{"style":330},[4280],{"type":59,"value":343},{"type":54,"tag":273,"props":4282,"children":4283},{"style":285},[4284],{"type":59,"value":4285},"video-active-change",{"type":54,"tag":273,"props":4287,"children":4288},{"style":330},[4289],{"type":59,"value":343},{"type":54,"tag":273,"props":4291,"children":4292},{"style":330},[4293],{"type":59,"value":1202},{"type":54,"tag":273,"props":4295,"children":4296},{"style":330},[4297],{"type":59,"value":1315},{"type":54,"tag":273,"props":4299,"children":4300},{"style":3187},[4301],{"type":59,"value":3190},{"type":54,"tag":273,"props":4303,"children":4304},{"style":330},[4305],{"type":59,"value":857},{"type":54,"tag":273,"props":4307,"children":4308},{"style":380},[4309],{"type":59,"value":2534},{"type":54,"tag":273,"props":4311,"children":4312},{"style":330},[4313],{"type":59,"value":779},{"type":54,"tag":273,"props":4315,"children":4316},{"class":275,"line":419},[4317],{"type":54,"tag":273,"props":4318,"children":4319},{"style":700},[4320],{"type":59,"value":4321},"  \u002F\u002F Video state changed\n",{"type":54,"tag":273,"props":4323,"children":4324},{"class":275,"line":464},[4325,4329,4333,4337,4341,4345,4350,4354,4358,4362,4366],{"type":54,"tag":273,"props":4326,"children":4327},{"style":319},[4328],{"type":59,"value":3218},{"type":54,"tag":273,"props":4330,"children":4331},{"style":330},[4332],{"type":59,"value":730},{"type":54,"tag":273,"props":4334,"children":4335},{"style":733},[4336],{"type":59,"value":1271},{"type":54,"tag":273,"props":4338,"children":4339},{"style":374},[4340],{"type":59,"value":839},{"type":54,"tag":273,"props":4342,"children":4343},{"style":330},[4344],{"type":59,"value":343},{"type":54,"tag":273,"props":4346,"children":4347},{"style":285},[4348],{"type":59,"value":4349},"Video active:",{"type":54,"tag":273,"props":4351,"children":4352},{"style":330},[4353],{"type":59,"value":343},{"type":54,"tag":273,"props":4355,"children":4356},{"style":330},[4357],{"type":59,"value":1202},{"type":54,"tag":273,"props":4359,"children":4360},{"style":319},[4361],{"type":59,"value":3252},{"type":54,"tag":273,"props":4363,"children":4364},{"style":374},[4365],{"type":59,"value":857},{"type":54,"tag":273,"props":4367,"children":4368},{"style":330},[4369],{"type":59,"value":348},{"type":54,"tag":273,"props":4371,"children":4372},{"class":275,"line":509},[4373,4377,4381],{"type":54,"tag":273,"props":4374,"children":4375},{"style":330},[4376],{"type":59,"value":2700},{"type":54,"tag":273,"props":4378,"children":4379},{"style":319},[4380],{"type":59,"value":857},{"type":54,"tag":273,"props":4382,"children":4383},{"style":330},[4384],{"type":59,"value":348},{"type":54,"tag":273,"props":4386,"children":4387},{"class":275,"line":554},[4388],{"type":54,"tag":273,"props":4389,"children":4390},{"emptyLinePlaceholder":691},[4391],{"type":59,"value":694},{"type":54,"tag":273,"props":4393,"children":4394},{"class":275,"line":599},[4395,4399,4403,4407,4411,4415,4420,4424,4428,4432,4436,4440,4444],{"type":54,"tag":273,"props":4396,"children":4397},{"style":319},[4398],{"type":59,"value":3033},{"type":54,"tag":273,"props":4400,"children":4401},{"style":330},[4402],{"type":59,"value":730},{"type":54,"tag":273,"props":4404,"children":4405},{"style":733},[4406],{"type":59,"value":3042},{"type":54,"tag":273,"props":4408,"children":4409},{"style":319},[4410],{"type":59,"value":839},{"type":54,"tag":273,"props":4412,"children":4413},{"style":330},[4414],{"type":59,"value":343},{"type":54,"tag":273,"props":4416,"children":4417},{"style":285},[4418],{"type":59,"value":4419},"video-statistic-data-change",{"type":54,"tag":273,"props":4421,"children":4422},{"style":330},[4423],{"type":59,"value":343},{"type":54,"tag":273,"props":4425,"children":4426},{"style":330},[4427],{"type":59,"value":1202},{"type":54,"tag":273,"props":4429,"children":4430},{"style":330},[4431],{"type":59,"value":1315},{"type":54,"tag":273,"props":4433,"children":4434},{"style":3187},[4435],{"type":59,"value":3190},{"type":54,"tag":273,"props":4437,"children":4438},{"style":330},[4439],{"type":59,"value":857},{"type":54,"tag":273,"props":4441,"children":4442},{"style":380},[4443],{"type":59,"value":2534},{"type":54,"tag":273,"props":4445,"children":4446},{"style":330},[4447],{"type":59,"value":779},{"type":54,"tag":273,"props":4449,"children":4450},{"class":275,"line":782},[4451,4455,4459,4463,4467,4471,4476,4480,4484,4488,4492],{"type":54,"tag":273,"props":4452,"children":4453},{"style":319},[4454],{"type":59,"value":3218},{"type":54,"tag":273,"props":4456,"children":4457},{"style":330},[4458],{"type":59,"value":730},{"type":54,"tag":273,"props":4460,"children":4461},{"style":733},[4462],{"type":59,"value":1271},{"type":54,"tag":273,"props":4464,"children":4465},{"style":374},[4466],{"type":59,"value":839},{"type":54,"tag":273,"props":4468,"children":4469},{"style":330},[4470],{"type":59,"value":343},{"type":54,"tag":273,"props":4472,"children":4473},{"style":285},[4474],{"type":59,"value":4475},"Video stats:",{"type":54,"tag":273,"props":4477,"children":4478},{"style":330},[4479],{"type":59,"value":343},{"type":54,"tag":273,"props":4481,"children":4482},{"style":330},[4483],{"type":59,"value":1202},{"type":54,"tag":273,"props":4485,"children":4486},{"style":319},[4487],{"type":59,"value":3252},{"type":54,"tag":273,"props":4489,"children":4490},{"style":374},[4491],{"type":59,"value":857},{"type":54,"tag":273,"props":4493,"children":4494},{"style":330},[4495],{"type":59,"value":348},{"type":54,"tag":273,"props":4497,"children":4498},{"class":275,"line":795},[4499,4503,4507],{"type":54,"tag":273,"props":4500,"children":4501},{"style":330},[4502],{"type":59,"value":2700},{"type":54,"tag":273,"props":4504,"children":4505},{"style":319},[4506],{"type":59,"value":857},{"type":54,"tag":273,"props":4508,"children":4509},{"style":330},[4510],{"type":59,"value":348},{"type":54,"tag":255,"props":4512,"children":4514},{"id":4513},"share-events",[4515],{"type":59,"value":4516},"Share Events",{"type":54,"tag":262,"props":4518,"children":4520},{"className":301,"code":4519,"language":303,"meta":267,"style":267},"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",[4521],{"type":54,"tag":93,"props":4522,"children":4523},{"__ignoreMap":267},[4524,4580,4628,4643,4650,4706,4754],{"type":54,"tag":273,"props":4525,"children":4526},{"class":275,"line":276},[4527,4531,4535,4539,4543,4547,4552,4556,4560,4564,4568,4572,4576],{"type":54,"tag":273,"props":4528,"children":4529},{"style":319},[4530],{"type":59,"value":3033},{"type":54,"tag":273,"props":4532,"children":4533},{"style":330},[4534],{"type":59,"value":730},{"type":54,"tag":273,"props":4536,"children":4537},{"style":733},[4538],{"type":59,"value":3042},{"type":54,"tag":273,"props":4540,"children":4541},{"style":319},[4542],{"type":59,"value":839},{"type":54,"tag":273,"props":4544,"children":4545},{"style":330},[4546],{"type":59,"value":343},{"type":54,"tag":273,"props":4548,"children":4549},{"style":285},[4550],{"type":59,"value":4551},"active-share-change",{"type":54,"tag":273,"props":4553,"children":4554},{"style":330},[4555],{"type":59,"value":343},{"type":54,"tag":273,"props":4557,"children":4558},{"style":330},[4559],{"type":59,"value":1202},{"type":54,"tag":273,"props":4561,"children":4562},{"style":330},[4563],{"type":59,"value":1315},{"type":54,"tag":273,"props":4565,"children":4566},{"style":3187},[4567],{"type":59,"value":3190},{"type":54,"tag":273,"props":4569,"children":4570},{"style":330},[4571],{"type":59,"value":857},{"type":54,"tag":273,"props":4573,"children":4574},{"style":380},[4575],{"type":59,"value":2534},{"type":54,"tag":273,"props":4577,"children":4578},{"style":330},[4579],{"type":59,"value":779},{"type":54,"tag":273,"props":4581,"children":4582},{"class":275,"line":419},[4583,4587,4591,4595,4599,4603,4608,4612,4616,4620,4624],{"type":54,"tag":273,"props":4584,"children":4585},{"style":319},[4586],{"type":59,"value":3218},{"type":54,"tag":273,"props":4588,"children":4589},{"style":330},[4590],{"type":59,"value":730},{"type":54,"tag":273,"props":4592,"children":4593},{"style":733},[4594],{"type":59,"value":1271},{"type":54,"tag":273,"props":4596,"children":4597},{"style":374},[4598],{"type":59,"value":839},{"type":54,"tag":273,"props":4600,"children":4601},{"style":330},[4602],{"type":59,"value":343},{"type":54,"tag":273,"props":4604,"children":4605},{"style":285},[4606],{"type":59,"value":4607},"Share status:",{"type":54,"tag":273,"props":4609,"children":4610},{"style":330},[4611],{"type":59,"value":343},{"type":54,"tag":273,"props":4613,"children":4614},{"style":330},[4615],{"type":59,"value":1202},{"type":54,"tag":273,"props":4617,"children":4618},{"style":319},[4619],{"type":59,"value":3252},{"type":54,"tag":273,"props":4621,"children":4622},{"style":374},[4623],{"type":59,"value":857},{"type":54,"tag":273,"props":4625,"children":4626},{"style":330},[4627],{"type":59,"value":348},{"type":54,"tag":273,"props":4629,"children":4630},{"class":275,"line":464},[4631,4635,4639],{"type":54,"tag":273,"props":4632,"children":4633},{"style":330},[4634],{"type":59,"value":2700},{"type":54,"tag":273,"props":4636,"children":4637},{"style":319},[4638],{"type":59,"value":857},{"type":54,"tag":273,"props":4640,"children":4641},{"style":330},[4642],{"type":59,"value":348},{"type":54,"tag":273,"props":4644,"children":4645},{"class":275,"line":509},[4646],{"type":54,"tag":273,"props":4647,"children":4648},{"emptyLinePlaceholder":691},[4649],{"type":59,"value":694},{"type":54,"tag":273,"props":4651,"children":4652},{"class":275,"line":554},[4653,4657,4661,4665,4669,4673,4678,4682,4686,4690,4694,4698,4702],{"type":54,"tag":273,"props":4654,"children":4655},{"style":319},[4656],{"type":59,"value":3033},{"type":54,"tag":273,"props":4658,"children":4659},{"style":330},[4660],{"type":59,"value":730},{"type":54,"tag":273,"props":4662,"children":4663},{"style":733},[4664],{"type":59,"value":3042},{"type":54,"tag":273,"props":4666,"children":4667},{"style":319},[4668],{"type":59,"value":839},{"type":54,"tag":273,"props":4670,"children":4671},{"style":330},[4672],{"type":59,"value":343},{"type":54,"tag":273,"props":4674,"children":4675},{"style":285},[4676],{"type":59,"value":4677},"share-statistic-data-change",{"type":54,"tag":273,"props":4679,"children":4680},{"style":330},[4681],{"type":59,"value":343},{"type":54,"tag":273,"props":4683,"children":4684},{"style":330},[4685],{"type":59,"value":1202},{"type":54,"tag":273,"props":4687,"children":4688},{"style":330},[4689],{"type":59,"value":1315},{"type":54,"tag":273,"props":4691,"children":4692},{"style":3187},[4693],{"type":59,"value":3190},{"type":54,"tag":273,"props":4695,"children":4696},{"style":330},[4697],{"type":59,"value":857},{"type":54,"tag":273,"props":4699,"children":4700},{"style":380},[4701],{"type":59,"value":2534},{"type":54,"tag":273,"props":4703,"children":4704},{"style":330},[4705],{"type":59,"value":779},{"type":54,"tag":273,"props":4707,"children":4708},{"class":275,"line":599},[4709,4713,4717,4721,4725,4729,4734,4738,4742,4746,4750],{"type":54,"tag":273,"props":4710,"children":4711},{"style":319},[4712],{"type":59,"value":3218},{"type":54,"tag":273,"props":4714,"children":4715},{"style":330},[4716],{"type":59,"value":730},{"type":54,"tag":273,"props":4718,"children":4719},{"style":733},[4720],{"type":59,"value":1271},{"type":54,"tag":273,"props":4722,"children":4723},{"style":374},[4724],{"type":59,"value":839},{"type":54,"tag":273,"props":4726,"children":4727},{"style":330},[4728],{"type":59,"value":343},{"type":54,"tag":273,"props":4730,"children":4731},{"style":285},[4732],{"type":59,"value":4733},"Share stats:",{"type":54,"tag":273,"props":4735,"children":4736},{"style":330},[4737],{"type":59,"value":343},{"type":54,"tag":273,"props":4739,"children":4740},{"style":330},[4741],{"type":59,"value":1202},{"type":54,"tag":273,"props":4743,"children":4744},{"style":319},[4745],{"type":59,"value":3252},{"type":54,"tag":273,"props":4747,"children":4748},{"style":374},[4749],{"type":59,"value":857},{"type":54,"tag":273,"props":4751,"children":4752},{"style":330},[4753],{"type":59,"value":348},{"type":54,"tag":273,"props":4755,"children":4756},{"class":275,"line":782},[4757,4761,4765],{"type":54,"tag":273,"props":4758,"children":4759},{"style":330},[4760],{"type":59,"value":2700},{"type":54,"tag":273,"props":4762,"children":4763},{"style":319},[4764],{"type":59,"value":857},{"type":54,"tag":273,"props":4766,"children":4767},{"style":330},[4768],{"type":59,"value":348},{"type":54,"tag":255,"props":4770,"children":4772},{"id":4771},"chat-events",[4773],{"type":59,"value":4774},"Chat Events",{"type":54,"tag":262,"props":4776,"children":4778},{"className":301,"code":4777,"language":303,"meta":267,"style":267},"client.on('chat-on-message', (payload) => {\n  console.log('Chat message:', payload);\n});\n",[4779],{"type":54,"tag":93,"props":4780,"children":4781},{"__ignoreMap":267},[4782,4838,4886],{"type":54,"tag":273,"props":4783,"children":4784},{"class":275,"line":276},[4785,4789,4793,4797,4801,4805,4810,4814,4818,4822,4826,4830,4834],{"type":54,"tag":273,"props":4786,"children":4787},{"style":319},[4788],{"type":59,"value":3033},{"type":54,"tag":273,"props":4790,"children":4791},{"style":330},[4792],{"type":59,"value":730},{"type":54,"tag":273,"props":4794,"children":4795},{"style":733},[4796],{"type":59,"value":3042},{"type":54,"tag":273,"props":4798,"children":4799},{"style":319},[4800],{"type":59,"value":839},{"type":54,"tag":273,"props":4802,"children":4803},{"style":330},[4804],{"type":59,"value":343},{"type":54,"tag":273,"props":4806,"children":4807},{"style":285},[4808],{"type":59,"value":4809},"chat-on-message",{"type":54,"tag":273,"props":4811,"children":4812},{"style":330},[4813],{"type":59,"value":343},{"type":54,"tag":273,"props":4815,"children":4816},{"style":330},[4817],{"type":59,"value":1202},{"type":54,"tag":273,"props":4819,"children":4820},{"style":330},[4821],{"type":59,"value":1315},{"type":54,"tag":273,"props":4823,"children":4824},{"style":3187},[4825],{"type":59,"value":3190},{"type":54,"tag":273,"props":4827,"children":4828},{"style":330},[4829],{"type":59,"value":857},{"type":54,"tag":273,"props":4831,"children":4832},{"style":380},[4833],{"type":59,"value":2534},{"type":54,"tag":273,"props":4835,"children":4836},{"style":330},[4837],{"type":59,"value":779},{"type":54,"tag":273,"props":4839,"children":4840},{"class":275,"line":419},[4841,4845,4849,4853,4857,4861,4866,4870,4874,4878,4882],{"type":54,"tag":273,"props":4842,"children":4843},{"style":319},[4844],{"type":59,"value":3218},{"type":54,"tag":273,"props":4846,"children":4847},{"style":330},[4848],{"type":59,"value":730},{"type":54,"tag":273,"props":4850,"children":4851},{"style":733},[4852],{"type":59,"value":1271},{"type":54,"tag":273,"props":4854,"children":4855},{"style":374},[4856],{"type":59,"value":839},{"type":54,"tag":273,"props":4858,"children":4859},{"style":330},[4860],{"type":59,"value":343},{"type":54,"tag":273,"props":4862,"children":4863},{"style":285},[4864],{"type":59,"value":4865},"Chat message:",{"type":54,"tag":273,"props":4867,"children":4868},{"style":330},[4869],{"type":59,"value":343},{"type":54,"tag":273,"props":4871,"children":4872},{"style":330},[4873],{"type":59,"value":1202},{"type":54,"tag":273,"props":4875,"children":4876},{"style":319},[4877],{"type":59,"value":3252},{"type":54,"tag":273,"props":4879,"children":4880},{"style":374},[4881],{"type":59,"value":857},{"type":54,"tag":273,"props":4883,"children":4884},{"style":330},[4885],{"type":59,"value":348},{"type":54,"tag":273,"props":4887,"children":4888},{"class":275,"line":464},[4889,4893,4897],{"type":54,"tag":273,"props":4890,"children":4891},{"style":330},[4892],{"type":59,"value":2700},{"type":54,"tag":273,"props":4894,"children":4895},{"style":319},[4896],{"type":59,"value":857},{"type":54,"tag":273,"props":4898,"children":4899},{"style":330},[4900],{"type":59,"value":348},{"type":54,"tag":255,"props":4902,"children":4904},{"id":4903},"recording-events",[4905],{"type":59,"value":4906},"Recording Events",{"type":54,"tag":262,"props":4908,"children":4910},{"className":301,"code":4909,"language":303,"meta":267,"style":267},"client.on('recording-change', (payload) => {\n  console.log('Recording status:', payload);\n});\n",[4911],{"type":54,"tag":93,"props":4912,"children":4913},{"__ignoreMap":267},[4914,4970,5018],{"type":54,"tag":273,"props":4915,"children":4916},{"class":275,"line":276},[4917,4921,4925,4929,4933,4937,4942,4946,4950,4954,4958,4962,4966],{"type":54,"tag":273,"props":4918,"children":4919},{"style":319},[4920],{"type":59,"value":3033},{"type":54,"tag":273,"props":4922,"children":4923},{"style":330},[4924],{"type":59,"value":730},{"type":54,"tag":273,"props":4926,"children":4927},{"style":733},[4928],{"type":59,"value":3042},{"type":54,"tag":273,"props":4930,"children":4931},{"style":319},[4932],{"type":59,"value":839},{"type":54,"tag":273,"props":4934,"children":4935},{"style":330},[4936],{"type":59,"value":343},{"type":54,"tag":273,"props":4938,"children":4939},{"style":285},[4940],{"type":59,"value":4941},"recording-change",{"type":54,"tag":273,"props":4943,"children":4944},{"style":330},[4945],{"type":59,"value":343},{"type":54,"tag":273,"props":4947,"children":4948},{"style":330},[4949],{"type":59,"value":1202},{"type":54,"tag":273,"props":4951,"children":4952},{"style":330},[4953],{"type":59,"value":1315},{"type":54,"tag":273,"props":4955,"children":4956},{"style":3187},[4957],{"type":59,"value":3190},{"type":54,"tag":273,"props":4959,"children":4960},{"style":330},[4961],{"type":59,"value":857},{"type":54,"tag":273,"props":4963,"children":4964},{"style":380},[4965],{"type":59,"value":2534},{"type":54,"tag":273,"props":4967,"children":4968},{"style":330},[4969],{"type":59,"value":779},{"type":54,"tag":273,"props":4971,"children":4972},{"class":275,"line":419},[4973,4977,4981,4985,4989,4993,4998,5002,5006,5010,5014],{"type":54,"tag":273,"props":4974,"children":4975},{"style":319},[4976],{"type":59,"value":3218},{"type":54,"tag":273,"props":4978,"children":4979},{"style":330},[4980],{"type":59,"value":730},{"type":54,"tag":273,"props":4982,"children":4983},{"style":733},[4984],{"type":59,"value":1271},{"type":54,"tag":273,"props":4986,"children":4987},{"style":374},[4988],{"type":59,"value":839},{"type":54,"tag":273,"props":4990,"children":4991},{"style":330},[4992],{"type":59,"value":343},{"type":54,"tag":273,"props":4994,"children":4995},{"style":285},[4996],{"type":59,"value":4997},"Recording status:",{"type":54,"tag":273,"props":4999,"children":5000},{"style":330},[5001],{"type":59,"value":343},{"type":54,"tag":273,"props":5003,"children":5004},{"style":330},[5005],{"type":59,"value":1202},{"type":54,"tag":273,"props":5007,"children":5008},{"style":319},[5009],{"type":59,"value":3252},{"type":54,"tag":273,"props":5011,"children":5012},{"style":374},[5013],{"type":59,"value":857},{"type":54,"tag":273,"props":5015,"children":5016},{"style":330},[5017],{"type":59,"value":348},{"type":54,"tag":273,"props":5019,"children":5020},{"class":275,"line":464},[5021,5025,5029],{"type":54,"tag":273,"props":5022,"children":5023},{"style":330},[5024],{"type":59,"value":2700},{"type":54,"tag":273,"props":5026,"children":5027},{"style":319},[5028],{"type":59,"value":857},{"type":54,"tag":273,"props":5030,"children":5031},{"style":330},[5032],{"type":59,"value":348},{"type":54,"tag":255,"props":5034,"children":5036},{"id":5035},"media-device-events",[5037],{"type":59,"value":5038},"Media Device Events",{"type":54,"tag":262,"props":5040,"children":5042},{"className":301,"code":5041,"language":303,"meta":267,"style":267},"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",[5043],{"type":54,"tag":93,"props":5044,"children":5045},{"__ignoreMap":267},[5046,5102,5150,5165,5172,5220,5260],{"type":54,"tag":273,"props":5047,"children":5048},{"class":275,"line":276},[5049,5053,5057,5061,5065,5069,5074,5078,5082,5086,5090,5094,5098],{"type":54,"tag":273,"props":5050,"children":5051},{"style":319},[5052],{"type":59,"value":3033},{"type":54,"tag":273,"props":5054,"children":5055},{"style":330},[5056],{"type":59,"value":730},{"type":54,"tag":273,"props":5058,"children":5059},{"style":733},[5060],{"type":59,"value":3042},{"type":54,"tag":273,"props":5062,"children":5063},{"style":319},[5064],{"type":59,"value":839},{"type":54,"tag":273,"props":5066,"children":5067},{"style":330},[5068],{"type":59,"value":343},{"type":54,"tag":273,"props":5070,"children":5071},{"style":285},[5072],{"type":59,"value":5073},"media-sdk-change",{"type":54,"tag":273,"props":5075,"children":5076},{"style":330},[5077],{"type":59,"value":343},{"type":54,"tag":273,"props":5079,"children":5080},{"style":330},[5081],{"type":59,"value":1202},{"type":54,"tag":273,"props":5083,"children":5084},{"style":330},[5085],{"type":59,"value":1315},{"type":54,"tag":273,"props":5087,"children":5088},{"style":3187},[5089],{"type":59,"value":3190},{"type":54,"tag":273,"props":5091,"children":5092},{"style":330},[5093],{"type":59,"value":857},{"type":54,"tag":273,"props":5095,"children":5096},{"style":380},[5097],{"type":59,"value":2534},{"type":54,"tag":273,"props":5099,"children":5100},{"style":330},[5101],{"type":59,"value":779},{"type":54,"tag":273,"props":5103,"children":5104},{"class":275,"line":419},[5105,5109,5113,5117,5121,5125,5130,5134,5138,5142,5146],{"type":54,"tag":273,"props":5106,"children":5107},{"style":319},[5108],{"type":59,"value":3218},{"type":54,"tag":273,"props":5110,"children":5111},{"style":330},[5112],{"type":59,"value":730},{"type":54,"tag":273,"props":5114,"children":5115},{"style":733},[5116],{"type":59,"value":1271},{"type":54,"tag":273,"props":5118,"children":5119},{"style":374},[5120],{"type":59,"value":839},{"type":54,"tag":273,"props":5122,"children":5123},{"style":330},[5124],{"type":59,"value":343},{"type":54,"tag":273,"props":5126,"children":5127},{"style":285},[5128],{"type":59,"value":5129},"Media SDK:",{"type":54,"tag":273,"props":5131,"children":5132},{"style":330},[5133],{"type":59,"value":343},{"type":54,"tag":273,"props":5135,"children":5136},{"style":330},[5137],{"type":59,"value":1202},{"type":54,"tag":273,"props":5139,"children":5140},{"style":319},[5141],{"type":59,"value":3252},{"type":54,"tag":273,"props":5143,"children":5144},{"style":374},[5145],{"type":59,"value":857},{"type":54,"tag":273,"props":5147,"children":5148},{"style":330},[5149],{"type":59,"value":348},{"type":54,"tag":273,"props":5151,"children":5152},{"class":275,"line":464},[5153,5157,5161],{"type":54,"tag":273,"props":5154,"children":5155},{"style":330},[5156],{"type":59,"value":2700},{"type":54,"tag":273,"props":5158,"children":5159},{"style":319},[5160],{"type":59,"value":857},{"type":54,"tag":273,"props":5162,"children":5163},{"style":330},[5164],{"type":59,"value":348},{"type":54,"tag":273,"props":5166,"children":5167},{"class":275,"line":509},[5168],{"type":54,"tag":273,"props":5169,"children":5170},{"emptyLinePlaceholder":691},[5171],{"type":59,"value":694},{"type":54,"tag":273,"props":5173,"children":5174},{"class":275,"line":554},[5175,5179,5183,5187,5191,5195,5200,5204,5208,5212,5216],{"type":54,"tag":273,"props":5176,"children":5177},{"style":319},[5178],{"type":59,"value":3033},{"type":54,"tag":273,"props":5180,"children":5181},{"style":330},[5182],{"type":59,"value":730},{"type":54,"tag":273,"props":5184,"children":5185},{"style":733},[5186],{"type":59,"value":3042},{"type":54,"tag":273,"props":5188,"children":5189},{"style":319},[5190],{"type":59,"value":839},{"type":54,"tag":273,"props":5192,"children":5193},{"style":330},[5194],{"type":59,"value":343},{"type":54,"tag":273,"props":5196,"children":5197},{"style":285},[5198],{"type":59,"value":5199},"device-change",{"type":54,"tag":273,"props":5201,"children":5202},{"style":330},[5203],{"type":59,"value":343},{"type":54,"tag":273,"props":5205,"children":5206},{"style":330},[5207],{"type":59,"value":1202},{"type":54,"tag":273,"props":5209,"children":5210},{"style":330},[5211],{"type":59,"value":2529},{"type":54,"tag":273,"props":5213,"children":5214},{"style":380},[5215],{"type":59,"value":2534},{"type":54,"tag":273,"props":5217,"children":5218},{"style":330},[5219],{"type":59,"value":779},{"type":54,"tag":273,"props":5221,"children":5222},{"class":275,"line":599},[5223,5227,5231,5235,5239,5243,5248,5252,5256],{"type":54,"tag":273,"props":5224,"children":5225},{"style":319},[5226],{"type":59,"value":3218},{"type":54,"tag":273,"props":5228,"children":5229},{"style":330},[5230],{"type":59,"value":730},{"type":54,"tag":273,"props":5232,"children":5233},{"style":733},[5234],{"type":59,"value":1271},{"type":54,"tag":273,"props":5236,"children":5237},{"style":374},[5238],{"type":59,"value":839},{"type":54,"tag":273,"props":5240,"children":5241},{"style":330},[5242],{"type":59,"value":343},{"type":54,"tag":273,"props":5244,"children":5245},{"style":285},[5246],{"type":59,"value":5247},"Device changed",{"type":54,"tag":273,"props":5249,"children":5250},{"style":330},[5251],{"type":59,"value":343},{"type":54,"tag":273,"props":5253,"children":5254},{"style":374},[5255],{"type":59,"value":857},{"type":54,"tag":273,"props":5257,"children":5258},{"style":330},[5259],{"type":59,"value":348},{"type":54,"tag":273,"props":5261,"children":5262},{"class":275,"line":782},[5263,5267,5271],{"type":54,"tag":273,"props":5264,"children":5265},{"style":330},[5266],{"type":59,"value":2700},{"type":54,"tag":273,"props":5268,"children":5269},{"style":319},[5270],{"type":59,"value":857},{"type":54,"tag":273,"props":5272,"children":5273},{"style":330},[5274],{"type":59,"value":348},{"type":54,"tag":81,"props":5276,"children":5278},{"id":5277},"common-methods",[5279],{"type":59,"value":5280},"Common Methods",{"type":54,"tag":255,"props":5282,"children":5284},{"id":5283},"user-information",[5285],{"type":59,"value":5286},"User Information",{"type":54,"tag":262,"props":5288,"children":5290},{"className":301,"code":5289,"language":303,"meta":267,"style":267},"\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",[5291],{"type":54,"tag":93,"props":5292,"children":5293},{"__ignoreMap":267},[5294,5302,5339,5385,5392,5400,5437,5482,5489,5497],{"type":54,"tag":273,"props":5295,"children":5296},{"class":275,"line":276},[5297],{"type":54,"tag":273,"props":5298,"children":5299},{"style":700},[5300],{"type":59,"value":5301},"\u002F\u002F Get current user\n",{"type":54,"tag":273,"props":5303,"children":5304},{"class":275,"line":419},[5305,5309,5314,5318,5322,5326,5331,5335],{"type":54,"tag":273,"props":5306,"children":5307},{"style":380},[5308],{"type":59,"value":711},{"type":54,"tag":273,"props":5310,"children":5311},{"style":319},[5312],{"type":59,"value":5313}," currentUser ",{"type":54,"tag":273,"props":5315,"children":5316},{"style":330},[5317],{"type":59,"value":388},{"type":54,"tag":273,"props":5319,"children":5320},{"style":319},[5321],{"type":59,"value":892},{"type":54,"tag":273,"props":5323,"children":5324},{"style":330},[5325],{"type":59,"value":730},{"type":54,"tag":273,"props":5327,"children":5328},{"style":733},[5329],{"type":59,"value":5330},"getCurrentUser",{"type":54,"tag":273,"props":5332,"children":5333},{"style":319},[5334],{"type":59,"value":741},{"type":54,"tag":273,"props":5336,"children":5337},{"style":330},[5338],{"type":59,"value":348},{"type":54,"tag":273,"props":5340,"children":5341},{"class":275,"line":464},[5342,5347,5351,5355,5359,5363,5368,5372,5376,5381],{"type":54,"tag":273,"props":5343,"children":5344},{"style":319},[5345],{"type":59,"value":5346},"console",{"type":54,"tag":273,"props":5348,"children":5349},{"style":330},[5350],{"type":59,"value":730},{"type":54,"tag":273,"props":5352,"children":5353},{"style":733},[5354],{"type":59,"value":1271},{"type":54,"tag":273,"props":5356,"children":5357},{"style":319},[5358],{"type":59,"value":839},{"type":54,"tag":273,"props":5360,"children":5361},{"style":330},[5362],{"type":59,"value":343},{"type":54,"tag":273,"props":5364,"children":5365},{"style":285},[5366],{"type":59,"value":5367},"Current user:",{"type":54,"tag":273,"props":5369,"children":5370},{"style":330},[5371],{"type":59,"value":343},{"type":54,"tag":273,"props":5373,"children":5374},{"style":330},[5375],{"type":59,"value":1202},{"type":54,"tag":273,"props":5377,"children":5378},{"style":319},[5379],{"type":59,"value":5380}," currentUser)",{"type":54,"tag":273,"props":5382,"children":5383},{"style":330},[5384],{"type":59,"value":348},{"type":54,"tag":273,"props":5386,"children":5387},{"class":275,"line":509},[5388],{"type":54,"tag":273,"props":5389,"children":5390},{"emptyLinePlaceholder":691},[5391],{"type":59,"value":694},{"type":54,"tag":273,"props":5393,"children":5394},{"class":275,"line":554},[5395],{"type":54,"tag":273,"props":5396,"children":5397},{"style":700},[5398],{"type":59,"value":5399},"\u002F\u002F Get all participants\n",{"type":54,"tag":273,"props":5401,"children":5402},{"class":275,"line":599},[5403,5407,5412,5416,5420,5424,5429,5433],{"type":54,"tag":273,"props":5404,"children":5405},{"style":380},[5406],{"type":59,"value":711},{"type":54,"tag":273,"props":5408,"children":5409},{"style":319},[5410],{"type":59,"value":5411}," participants ",{"type":54,"tag":273,"props":5413,"children":5414},{"style":330},[5415],{"type":59,"value":388},{"type":54,"tag":273,"props":5417,"children":5418},{"style":319},[5419],{"type":59,"value":892},{"type":54,"tag":273,"props":5421,"children":5422},{"style":330},[5423],{"type":59,"value":730},{"type":54,"tag":273,"props":5425,"children":5426},{"style":733},[5427],{"type":59,"value":5428},"getParticipantsList",{"type":54,"tag":273,"props":5430,"children":5431},{"style":319},[5432],{"type":59,"value":741},{"type":54,"tag":273,"props":5434,"children":5435},{"style":330},[5436],{"type":59,"value":348},{"type":54,"tag":273,"props":5438,"children":5439},{"class":275,"line":782},[5440,5444,5448,5452,5456,5460,5465,5469,5473,5478],{"type":54,"tag":273,"props":5441,"children":5442},{"style":319},[5443],{"type":59,"value":5346},{"type":54,"tag":273,"props":5445,"children":5446},{"style":330},[5447],{"type":59,"value":730},{"type":54,"tag":273,"props":5449,"children":5450},{"style":733},[5451],{"type":59,"value":1271},{"type":54,"tag":273,"props":5453,"children":5454},{"style":319},[5455],{"type":59,"value":839},{"type":54,"tag":273,"props":5457,"children":5458},{"style":330},[5459],{"type":59,"value":343},{"type":54,"tag":273,"props":5461,"children":5462},{"style":285},[5463],{"type":59,"value":5464},"Participants:",{"type":54,"tag":273,"props":5466,"children":5467},{"style":330},[5468],{"type":59,"value":343},{"type":54,"tag":273,"props":5470,"children":5471},{"style":330},[5472],{"type":59,"value":1202},{"type":54,"tag":273,"props":5474,"children":5475},{"style":319},[5476],{"type":59,"value":5477}," participants)",{"type":54,"tag":273,"props":5479,"children":5480},{"style":330},[5481],{"type":59,"value":348},{"type":54,"tag":273,"props":5483,"children":5484},{"class":275,"line":795},[5485],{"type":54,"tag":273,"props":5486,"children":5487},{"emptyLinePlaceholder":691},[5488],{"type":59,"value":694},{"type":54,"tag":273,"props":5490,"children":5491},{"class":275,"line":804},[5492],{"type":54,"tag":273,"props":5493,"children":5494},{"style":700},[5495],{"type":59,"value":5496},"\u002F\u002F Check if user is host\n",{"type":54,"tag":273,"props":5498,"children":5499},{"class":275,"line":864},[5500,5504,5509,5513,5517,5521,5526,5530],{"type":54,"tag":273,"props":5501,"children":5502},{"style":380},[5503],{"type":59,"value":711},{"type":54,"tag":273,"props":5505,"children":5506},{"style":319},[5507],{"type":59,"value":5508}," isHost ",{"type":54,"tag":273,"props":5510,"children":5511},{"style":330},[5512],{"type":59,"value":388},{"type":54,"tag":273,"props":5514,"children":5515},{"style":319},[5516],{"type":59,"value":892},{"type":54,"tag":273,"props":5518,"children":5519},{"style":330},[5520],{"type":59,"value":730},{"type":54,"tag":273,"props":5522,"children":5523},{"style":733},[5524],{"type":59,"value":5525},"isHost",{"type":54,"tag":273,"props":5527,"children":5528},{"style":319},[5529],{"type":59,"value":741},{"type":54,"tag":273,"props":5531,"children":5532},{"style":330},[5533],{"type":59,"value":348},{"type":54,"tag":255,"props":5535,"children":5537},{"id":5536},"audio-control",[5538],{"type":59,"value":5539},"Audio Control",{"type":54,"tag":262,"props":5541,"children":5543},{"className":301,"code":5542,"language":303,"meta":267,"style":267},"\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",[5544],{"type":54,"tag":93,"props":5545,"children":5546},{"__ignoreMap":267},[5547,5555,5597,5637,5644,5652,5693,5700,5708],{"type":54,"tag":273,"props":5548,"children":5549},{"class":275,"line":276},[5550],{"type":54,"tag":273,"props":5551,"children":5552},{"style":700},[5553],{"type":59,"value":5554},"\u002F\u002F Mute\u002Funmute self\n",{"type":54,"tag":273,"props":5556,"children":5557},{"class":275,"line":419},[5558,5562,5566,5570,5575,5579,5583,5587,5592],{"type":54,"tag":273,"props":5559,"children":5560},{"style":313},[5561],{"type":59,"value":1867},{"type":54,"tag":273,"props":5563,"children":5564},{"style":319},[5565],{"type":59,"value":892},{"type":54,"tag":273,"props":5567,"children":5568},{"style":330},[5569],{"type":59,"value":730},{"type":54,"tag":273,"props":5571,"children":5572},{"style":733},[5573],{"type":59,"value":5574},"mute",{"type":54,"tag":273,"props":5576,"children":5577},{"style":319},[5578],{"type":59,"value":839},{"type":54,"tag":273,"props":5580,"children":5581},{"style":979},[5582],{"type":59,"value":1696},{"type":54,"tag":273,"props":5584,"children":5585},{"style":319},[5586],{"type":59,"value":857},{"type":54,"tag":273,"props":5588,"children":5589},{"style":330},[5590],{"type":59,"value":5591},";",{"type":54,"tag":273,"props":5593,"children":5594},{"style":700},[5595],{"type":59,"value":5596},"  \u002F\u002F mute\n",{"type":54,"tag":273,"props":5598,"children":5599},{"class":275,"line":464},[5600,5604,5608,5612,5616,5620,5624,5628,5632],{"type":54,"tag":273,"props":5601,"children":5602},{"style":313},[5603],{"type":59,"value":1867},{"type":54,"tag":273,"props":5605,"children":5606},{"style":319},[5607],{"type":59,"value":892},{"type":54,"tag":273,"props":5609,"children":5610},{"style":330},[5611],{"type":59,"value":730},{"type":54,"tag":273,"props":5613,"children":5614},{"style":733},[5615],{"type":59,"value":5574},{"type":54,"tag":273,"props":5617,"children":5618},{"style":319},[5619],{"type":59,"value":839},{"type":54,"tag":273,"props":5621,"children":5622},{"style":979},[5623],{"type":59,"value":1562},{"type":54,"tag":273,"props":5625,"children":5626},{"style":319},[5627],{"type":59,"value":857},{"type":54,"tag":273,"props":5629,"children":5630},{"style":330},[5631],{"type":59,"value":5591},{"type":54,"tag":273,"props":5633,"children":5634},{"style":700},[5635],{"type":59,"value":5636}," \u002F\u002F unmute\n",{"type":54,"tag":273,"props":5638,"children":5639},{"class":275,"line":509},[5640],{"type":54,"tag":273,"props":5641,"children":5642},{"emptyLinePlaceholder":691},[5643],{"type":59,"value":694},{"type":54,"tag":273,"props":5645,"children":5646},{"class":275,"line":554},[5647],{"type":54,"tag":273,"props":5648,"children":5649},{"style":700},[5650],{"type":59,"value":5651},"\u002F\u002F Mute\u002Funmute specific user (host only)\n",{"type":54,"tag":273,"props":5653,"children":5654},{"class":275,"line":599},[5655,5659,5663,5667,5672,5677,5681,5685,5689],{"type":54,"tag":273,"props":5656,"children":5657},{"style":313},[5658],{"type":59,"value":1867},{"type":54,"tag":273,"props":5660,"children":5661},{"style":319},[5662],{"type":59,"value":892},{"type":54,"tag":273,"props":5664,"children":5665},{"style":330},[5666],{"type":59,"value":730},{"type":54,"tag":273,"props":5668,"children":5669},{"style":733},[5670],{"type":59,"value":5671},"muteAudio",{"type":54,"tag":273,"props":5673,"children":5674},{"style":319},[5675],{"type":59,"value":5676},"(userId",{"type":54,"tag":273,"props":5678,"children":5679},{"style":330},[5680],{"type":59,"value":1202},{"type":54,"tag":273,"props":5682,"children":5683},{"style":979},[5684],{"type":59,"value":982},{"type":54,"tag":273,"props":5686,"children":5687},{"style":319},[5688],{"type":59,"value":857},{"type":54,"tag":273,"props":5690,"children":5691},{"style":330},[5692],{"type":59,"value":348},{"type":54,"tag":273,"props":5694,"children":5695},{"class":275,"line":782},[5696],{"type":54,"tag":273,"props":5697,"children":5698},{"emptyLinePlaceholder":691},[5699],{"type":59,"value":694},{"type":54,"tag":273,"props":5701,"children":5702},{"class":275,"line":795},[5703],{"type":54,"tag":273,"props":5704,"children":5705},{"style":700},[5706],{"type":59,"value":5707},"\u002F\u002F Mute all (host only)\n",{"type":54,"tag":273,"props":5709,"children":5710},{"class":275,"line":804},[5711,5715,5719,5723,5728,5732,5736,5740],{"type":54,"tag":273,"props":5712,"children":5713},{"style":313},[5714],{"type":59,"value":1867},{"type":54,"tag":273,"props":5716,"children":5717},{"style":319},[5718],{"type":59,"value":892},{"type":54,"tag":273,"props":5720,"children":5721},{"style":330},[5722],{"type":59,"value":730},{"type":54,"tag":273,"props":5724,"children":5725},{"style":733},[5726],{"type":59,"value":5727},"muteAllAudio",{"type":54,"tag":273,"props":5729,"children":5730},{"style":319},[5731],{"type":59,"value":839},{"type":54,"tag":273,"props":5733,"children":5734},{"style":979},[5735],{"type":59,"value":1696},{"type":54,"tag":273,"props":5737,"children":5738},{"style":319},[5739],{"type":59,"value":857},{"type":54,"tag":273,"props":5741,"children":5742},{"style":330},[5743],{"type":59,"value":348},{"type":54,"tag":255,"props":5745,"children":5747},{"id":5746},"video-control",[5748],{"type":59,"value":5749},"Video Control",{"type":54,"tag":262,"props":5751,"children":5753},{"className":301,"code":5752,"language":303,"meta":267,"style":267},"\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",[5754],{"type":54,"tag":93,"props":5755,"children":5756},{"__ignoreMap":267},[5757,5765,5793,5821,5828,5836],{"type":54,"tag":273,"props":5758,"children":5759},{"class":275,"line":276},[5760],{"type":54,"tag":273,"props":5761,"children":5762},{"style":700},[5763],{"type":59,"value":5764},"\u002F\u002F Start\u002Fstop video\n",{"type":54,"tag":273,"props":5766,"children":5767},{"class":275,"line":419},[5768,5772,5776,5780,5785,5789],{"type":54,"tag":273,"props":5769,"children":5770},{"style":313},[5771],{"type":59,"value":1867},{"type":54,"tag":273,"props":5773,"children":5774},{"style":319},[5775],{"type":59,"value":892},{"type":54,"tag":273,"props":5777,"children":5778},{"style":330},[5779],{"type":59,"value":730},{"type":54,"tag":273,"props":5781,"children":5782},{"style":733},[5783],{"type":59,"value":5784},"startVideo",{"type":54,"tag":273,"props":5786,"children":5787},{"style":319},[5788],{"type":59,"value":741},{"type":54,"tag":273,"props":5790,"children":5791},{"style":330},[5792],{"type":59,"value":348},{"type":54,"tag":273,"props":5794,"children":5795},{"class":275,"line":464},[5796,5800,5804,5808,5813,5817],{"type":54,"tag":273,"props":5797,"children":5798},{"style":313},[5799],{"type":59,"value":1867},{"type":54,"tag":273,"props":5801,"children":5802},{"style":319},[5803],{"type":59,"value":892},{"type":54,"tag":273,"props":5805,"children":5806},{"style":330},[5807],{"type":59,"value":730},{"type":54,"tag":273,"props":5809,"children":5810},{"style":733},[5811],{"type":59,"value":5812},"stopVideo",{"type":54,"tag":273,"props":5814,"children":5815},{"style":319},[5816],{"type":59,"value":741},{"type":54,"tag":273,"props":5818,"children":5819},{"style":330},[5820],{"type":59,"value":348},{"type":54,"tag":273,"props":5822,"children":5823},{"class":275,"line":509},[5824],{"type":54,"tag":273,"props":5825,"children":5826},{"emptyLinePlaceholder":691},[5827],{"type":59,"value":694},{"type":54,"tag":273,"props":5829,"children":5830},{"class":275,"line":554},[5831],{"type":54,"tag":273,"props":5832,"children":5833},{"style":700},[5834],{"type":59,"value":5835},"\u002F\u002F Mute\u002Funmute user's video (host only)\n",{"type":54,"tag":273,"props":5837,"children":5838},{"class":275,"line":599},[5839,5843,5847,5851,5856,5860,5864,5868,5872],{"type":54,"tag":273,"props":5840,"children":5841},{"style":313},[5842],{"type":59,"value":1867},{"type":54,"tag":273,"props":5844,"children":5845},{"style":319},[5846],{"type":59,"value":892},{"type":54,"tag":273,"props":5848,"children":5849},{"style":330},[5850],{"type":59,"value":730},{"type":54,"tag":273,"props":5852,"children":5853},{"style":733},[5854],{"type":59,"value":5855},"muteVideo",{"type":54,"tag":273,"props":5857,"children":5858},{"style":319},[5859],{"type":59,"value":5676},{"type":54,"tag":273,"props":5861,"children":5862},{"style":330},[5863],{"type":59,"value":1202},{"type":54,"tag":273,"props":5865,"children":5866},{"style":979},[5867],{"type":59,"value":982},{"type":54,"tag":273,"props":5869,"children":5870},{"style":319},[5871],{"type":59,"value":857},{"type":54,"tag":273,"props":5873,"children":5874},{"style":330},[5875],{"type":59,"value":348},{"type":54,"tag":255,"props":5877,"children":5879},{"id":5878},"meeting-control",[5880],{"type":59,"value":5881},"Meeting Control",{"type":54,"tag":262,"props":5883,"children":5885},{"className":301,"code":5884,"language":303,"meta":267,"style":267},"\u002F\u002F Leave meeting\nclient.leaveMeeting();\n\n\u002F\u002F End meeting (host only)\nclient.endMeeting();\n",[5886],{"type":54,"tag":93,"props":5887,"children":5888},{"__ignoreMap":267},[5889,5897,5921,5928,5936],{"type":54,"tag":273,"props":5890,"children":5891},{"class":275,"line":276},[5892],{"type":54,"tag":273,"props":5893,"children":5894},{"style":700},[5895],{"type":59,"value":5896},"\u002F\u002F Leave meeting\n",{"type":54,"tag":273,"props":5898,"children":5899},{"class":275,"line":419},[5900,5904,5908,5913,5917],{"type":54,"tag":273,"props":5901,"children":5902},{"style":319},[5903],{"type":59,"value":3033},{"type":54,"tag":273,"props":5905,"children":5906},{"style":330},[5907],{"type":59,"value":730},{"type":54,"tag":273,"props":5909,"children":5910},{"style":733},[5911],{"type":59,"value":5912},"leaveMeeting",{"type":54,"tag":273,"props":5914,"children":5915},{"style":319},[5916],{"type":59,"value":741},{"type":54,"tag":273,"props":5918,"children":5919},{"style":330},[5920],{"type":59,"value":348},{"type":54,"tag":273,"props":5922,"children":5923},{"class":275,"line":464},[5924],{"type":54,"tag":273,"props":5925,"children":5926},{"emptyLinePlaceholder":691},[5927],{"type":59,"value":694},{"type":54,"tag":273,"props":5929,"children":5930},{"class":275,"line":509},[5931],{"type":54,"tag":273,"props":5932,"children":5933},{"style":700},[5934],{"type":59,"value":5935},"\u002F\u002F End meeting (host only)\n",{"type":54,"tag":273,"props":5937,"children":5938},{"class":275,"line":554},[5939,5943,5947,5952,5956],{"type":54,"tag":273,"props":5940,"children":5941},{"style":319},[5942],{"type":59,"value":3033},{"type":54,"tag":273,"props":5944,"children":5945},{"style":330},[5946],{"type":59,"value":730},{"type":54,"tag":273,"props":5948,"children":5949},{"style":733},[5950],{"type":59,"value":5951},"endMeeting",{"type":54,"tag":273,"props":5953,"children":5954},{"style":319},[5955],{"type":59,"value":741},{"type":54,"tag":273,"props":5957,"children":5958},{"style":330},[5959],{"type":59,"value":348},{"type":54,"tag":255,"props":5961,"children":5963},{"id":5962},"screen-share",[5964],{"type":59,"value":5965},"Screen Share",{"type":54,"tag":262,"props":5967,"children":5969},{"className":301,"code":5968,"language":303,"meta":267,"style":267},"\u002F\u002F Start screen share\nawait client.startShareScreen();\n\n\u002F\u002F Stop screen share\nawait client.stopShareScreen();\n",[5970],{"type":54,"tag":93,"props":5971,"children":5972},{"__ignoreMap":267},[5973,5981,6009,6016,6024],{"type":54,"tag":273,"props":5974,"children":5975},{"class":275,"line":276},[5976],{"type":54,"tag":273,"props":5977,"children":5978},{"style":700},[5979],{"type":59,"value":5980},"\u002F\u002F Start screen share\n",{"type":54,"tag":273,"props":5982,"children":5983},{"class":275,"line":419},[5984,5988,5992,5996,6001,6005],{"type":54,"tag":273,"props":5985,"children":5986},{"style":313},[5987],{"type":59,"value":1867},{"type":54,"tag":273,"props":5989,"children":5990},{"style":319},[5991],{"type":59,"value":892},{"type":54,"tag":273,"props":5993,"children":5994},{"style":330},[5995],{"type":59,"value":730},{"type":54,"tag":273,"props":5997,"children":5998},{"style":733},[5999],{"type":59,"value":6000},"startShareScreen",{"type":54,"tag":273,"props":6002,"children":6003},{"style":319},[6004],{"type":59,"value":741},{"type":54,"tag":273,"props":6006,"children":6007},{"style":330},[6008],{"type":59,"value":348},{"type":54,"tag":273,"props":6010,"children":6011},{"class":275,"line":464},[6012],{"type":54,"tag":273,"props":6013,"children":6014},{"emptyLinePlaceholder":691},[6015],{"type":59,"value":694},{"type":54,"tag":273,"props":6017,"children":6018},{"class":275,"line":509},[6019],{"type":54,"tag":273,"props":6020,"children":6021},{"style":700},[6022],{"type":59,"value":6023},"\u002F\u002F Stop screen share\n",{"type":54,"tag":273,"props":6025,"children":6026},{"class":275,"line":554},[6027,6031,6035,6039,6044,6048],{"type":54,"tag":273,"props":6028,"children":6029},{"style":313},[6030],{"type":59,"value":1867},{"type":54,"tag":273,"props":6032,"children":6033},{"style":319},[6034],{"type":59,"value":892},{"type":54,"tag":273,"props":6036,"children":6037},{"style":330},[6038],{"type":59,"value":730},{"type":54,"tag":273,"props":6040,"children":6041},{"style":733},[6042],{"type":59,"value":6043},"stopShareScreen",{"type":54,"tag":273,"props":6045,"children":6046},{"style":319},[6047],{"type":59,"value":741},{"type":54,"tag":273,"props":6049,"children":6050},{"style":330},[6051],{"type":59,"value":348},{"type":54,"tag":255,"props":6053,"children":6055},{"id":6054},"recording",[6056],{"type":59,"value":6057},"Recording",{"type":54,"tag":262,"props":6059,"children":6061},{"className":301,"code":6060,"language":303,"meta":267,"style":267},"\u002F\u002F Start recording (cloud)\nawait client.startCloudRecording();\n\n\u002F\u002F Stop recording\nawait client.stopCloudRecording();\n",[6062],{"type":54,"tag":93,"props":6063,"children":6064},{"__ignoreMap":267},[6065,6073,6101,6108,6116],{"type":54,"tag":273,"props":6066,"children":6067},{"class":275,"line":276},[6068],{"type":54,"tag":273,"props":6069,"children":6070},{"style":700},[6071],{"type":59,"value":6072},"\u002F\u002F Start recording (cloud)\n",{"type":54,"tag":273,"props":6074,"children":6075},{"class":275,"line":419},[6076,6080,6084,6088,6093,6097],{"type":54,"tag":273,"props":6077,"children":6078},{"style":313},[6079],{"type":59,"value":1867},{"type":54,"tag":273,"props":6081,"children":6082},{"style":319},[6083],{"type":59,"value":892},{"type":54,"tag":273,"props":6085,"children":6086},{"style":330},[6087],{"type":59,"value":730},{"type":54,"tag":273,"props":6089,"children":6090},{"style":733},[6091],{"type":59,"value":6092},"startCloudRecording",{"type":54,"tag":273,"props":6094,"children":6095},{"style":319},[6096],{"type":59,"value":741},{"type":54,"tag":273,"props":6098,"children":6099},{"style":330},[6100],{"type":59,"value":348},{"type":54,"tag":273,"props":6102,"children":6103},{"class":275,"line":464},[6104],{"type":54,"tag":273,"props":6105,"children":6106},{"emptyLinePlaceholder":691},[6107],{"type":59,"value":694},{"type":54,"tag":273,"props":6109,"children":6110},{"class":275,"line":509},[6111],{"type":54,"tag":273,"props":6112,"children":6113},{"style":700},[6114],{"type":59,"value":6115},"\u002F\u002F Stop recording\n",{"type":54,"tag":273,"props":6117,"children":6118},{"class":275,"line":554},[6119,6123,6127,6131,6136,6140],{"type":54,"tag":273,"props":6120,"children":6121},{"style":313},[6122],{"type":59,"value":1867},{"type":54,"tag":273,"props":6124,"children":6125},{"style":319},[6126],{"type":59,"value":892},{"type":54,"tag":273,"props":6128,"children":6129},{"style":330},[6130],{"type":59,"value":730},{"type":54,"tag":273,"props":6132,"children":6133},{"style":733},[6134],{"type":59,"value":6135},"stopCloudRecording",{"type":54,"tag":273,"props":6137,"children":6138},{"style":319},[6139],{"type":59,"value":741},{"type":54,"tag":273,"props":6141,"children":6142},{"style":330},[6143],{"type":59,"value":348},{"type":54,"tag":255,"props":6145,"children":6147},{"id":6146},"virtual-background",[6148],{"type":59,"value":6149},"Virtual Background",{"type":54,"tag":262,"props":6151,"children":6153},{"className":301,"code":6152,"language":303,"meta":267,"style":267},"\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",[6154],{"type":54,"tag":93,"props":6155,"children":6156},{"__ignoreMap":267},[6157,6165,6207,6214,6222,6251,6258,6266],{"type":54,"tag":273,"props":6158,"children":6159},{"class":275,"line":276},[6160],{"type":54,"tag":273,"props":6161,"children":6162},{"style":700},[6163],{"type":59,"value":6164},"\u002F\u002F Check support\n",{"type":54,"tag":273,"props":6166,"children":6167},{"class":275,"line":419},[6168,6172,6177,6181,6186,6190,6194,6199,6203],{"type":54,"tag":273,"props":6169,"children":6170},{"style":380},[6171],{"type":59,"value":711},{"type":54,"tag":273,"props":6173,"children":6174},{"style":319},[6175],{"type":59,"value":6176}," isSupported ",{"type":54,"tag":273,"props":6178,"children":6179},{"style":330},[6180],{"type":59,"value":388},{"type":54,"tag":273,"props":6182,"children":6183},{"style":313},[6184],{"type":59,"value":6185}," await",{"type":54,"tag":273,"props":6187,"children":6188},{"style":319},[6189],{"type":59,"value":892},{"type":54,"tag":273,"props":6191,"children":6192},{"style":330},[6193],{"type":59,"value":730},{"type":54,"tag":273,"props":6195,"children":6196},{"style":733},[6197],{"type":59,"value":6198},"isSupportVirtualBackground",{"type":54,"tag":273,"props":6200,"children":6201},{"style":319},[6202],{"type":59,"value":741},{"type":54,"tag":273,"props":6204,"children":6205},{"style":330},[6206],{"type":59,"value":348},{"type":54,"tag":273,"props":6208,"children":6209},{"class":275,"line":464},[6210],{"type":54,"tag":273,"props":6211,"children":6212},{"emptyLinePlaceholder":691},[6213],{"type":59,"value":694},{"type":54,"tag":273,"props":6215,"children":6216},{"class":275,"line":509},[6217],{"type":54,"tag":273,"props":6218,"children":6219},{"style":700},[6220],{"type":59,"value":6221},"\u002F\u002F Set virtual background\n",{"type":54,"tag":273,"props":6223,"children":6224},{"class":275,"line":554},[6225,6229,6233,6237,6242,6247],{"type":54,"tag":273,"props":6226,"children":6227},{"style":313},[6228],{"type":59,"value":1867},{"type":54,"tag":273,"props":6230,"children":6231},{"style":319},[6232],{"type":59,"value":892},{"type":54,"tag":273,"props":6234,"children":6235},{"style":330},[6236],{"type":59,"value":730},{"type":54,"tag":273,"props":6238,"children":6239},{"style":733},[6240],{"type":59,"value":6241},"setVirtualBackground",{"type":54,"tag":273,"props":6243,"children":6244},{"style":319},[6245],{"type":59,"value":6246},"(imageUrl)",{"type":54,"tag":273,"props":6248,"children":6249},{"style":330},[6250],{"type":59,"value":348},{"type":54,"tag":273,"props":6252,"children":6253},{"class":275,"line":599},[6254],{"type":54,"tag":273,"props":6255,"children":6256},{"emptyLinePlaceholder":691},[6257],{"type":59,"value":694},{"type":54,"tag":273,"props":6259,"children":6260},{"class":275,"line":782},[6261],{"type":54,"tag":273,"props":6262,"children":6263},{"style":700},[6264],{"type":59,"value":6265},"\u002F\u002F Remove virtual background\n",{"type":54,"tag":273,"props":6267,"children":6268},{"class":275,"line":795},[6269,6273,6277,6281,6286,6290],{"type":54,"tag":273,"props":6270,"children":6271},{"style":313},[6272],{"type":59,"value":1867},{"type":54,"tag":273,"props":6274,"children":6275},{"style":319},[6276],{"type":59,"value":892},{"type":54,"tag":273,"props":6278,"children":6279},{"style":330},[6280],{"type":59,"value":730},{"type":54,"tag":273,"props":6282,"children":6283},{"style":733},[6284],{"type":59,"value":6285},"removeVirtualBackground",{"type":54,"tag":273,"props":6287,"children":6288},{"style":319},[6289],{"type":59,"value":741},{"type":54,"tag":273,"props":6291,"children":6292},{"style":330},[6293],{"type":59,"value":348},{"type":54,"tag":255,"props":6295,"children":6297},{"id":6296},"rename",[6298],{"type":59,"value":6299},"Rename",{"type":54,"tag":262,"props":6301,"children":6303},{"className":301,"code":6302,"language":303,"meta":267,"style":267},"\u002F\u002F Rename user\nawait client.rename(userId, 'New Name');\n",[6304],{"type":54,"tag":93,"props":6305,"children":6306},{"__ignoreMap":267},[6307,6315],{"type":54,"tag":273,"props":6308,"children":6309},{"class":275,"line":276},[6310],{"type":54,"tag":273,"props":6311,"children":6312},{"style":700},[6313],{"type":59,"value":6314},"\u002F\u002F Rename user\n",{"type":54,"tag":273,"props":6316,"children":6317},{"class":275,"line":419},[6318,6322,6326,6330,6334,6338,6342,6346,6351,6355,6359],{"type":54,"tag":273,"props":6319,"children":6320},{"style":313},[6321],{"type":59,"value":1867},{"type":54,"tag":273,"props":6323,"children":6324},{"style":319},[6325],{"type":59,"value":892},{"type":54,"tag":273,"props":6327,"children":6328},{"style":330},[6329],{"type":59,"value":730},{"type":54,"tag":273,"props":6331,"children":6332},{"style":733},[6333],{"type":59,"value":6296},{"type":54,"tag":273,"props":6335,"children":6336},{"style":319},[6337],{"type":59,"value":5676},{"type":54,"tag":273,"props":6339,"children":6340},{"style":330},[6341],{"type":59,"value":1202},{"type":54,"tag":273,"props":6343,"children":6344},{"style":330},[6345],{"type":59,"value":333},{"type":54,"tag":273,"props":6347,"children":6348},{"style":285},[6349],{"type":59,"value":6350},"New Name",{"type":54,"tag":273,"props":6352,"children":6353},{"style":330},[6354],{"type":59,"value":343},{"type":54,"tag":273,"props":6356,"children":6357},{"style":319},[6358],{"type":59,"value":857},{"type":54,"tag":273,"props":6360,"children":6361},{"style":330},[6362],{"type":59,"value":348},{"type":54,"tag":81,"props":6364,"children":6366},{"id":6365},"react-integration",[6367],{"type":59,"value":6368},"React Integration",{"type":54,"tag":255,"props":6370,"children":6372},{"id":6371},"basic-pattern",[6373],{"type":59,"value":6374},"Basic Pattern",{"type":54,"tag":262,"props":6376,"children":6380},{"className":6377,"code":6378,"language":6379,"meta":267,"style":267},"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",[6381],{"type":54,"tag":93,"props":6382,"children":6383},{"__ignoreMap":267},[6384,6454,6485,6492,6536,6543,6599,6661,6710,6765,6837,6844,6852,6876,6915,6955,6962,6979,6986,7025,7088,7095,7107,7115,7172,7180,7216,7244,7272,7292,7312,7328,7335,7370,7382,7394,7406,7418,7430,7445,7452,7476,7504,7575,7582,7622,7629,7642,7659,7675,7697,7763,7771,7793,7844,7857,7928,7945,7958],{"type":54,"tag":273,"props":6385,"children":6386},{"class":275,"line":276},[6387,6391,6396,6401,6405,6410,6414,6419,6423,6428,6433,6438,6442,6446,6450],{"type":54,"tag":273,"props":6388,"children":6389},{"style":313},[6390],{"type":59,"value":316},{"type":54,"tag":273,"props":6392,"children":6393},{"style":330},[6394],{"type":59,"value":6395}," {",{"type":54,"tag":273,"props":6397,"children":6398},{"style":319},[6399],{"type":59,"value":6400}," useEffect",{"type":54,"tag":273,"props":6402,"children":6403},{"style":330},[6404],{"type":59,"value":1202},{"type":54,"tag":273,"props":6406,"children":6407},{"style":319},[6408],{"type":59,"value":6409}," useRef",{"type":54,"tag":273,"props":6411,"children":6412},{"style":330},[6413],{"type":59,"value":1202},{"type":54,"tag":273,"props":6415,"children":6416},{"style":319},[6417],{"type":59,"value":6418}," useState",{"type":54,"tag":273,"props":6420,"children":6421},{"style":330},[6422],{"type":59,"value":1202},{"type":54,"tag":273,"props":6424,"children":6425},{"style":319},[6426],{"type":59,"value":6427}," useCallback",{"type":54,"tag":273,"props":6429,"children":6430},{"style":330},[6431],{"type":59,"value":6432}," }",{"type":54,"tag":273,"props":6434,"children":6435},{"style":313},[6436],{"type":59,"value":6437}," from",{"type":54,"tag":273,"props":6439,"children":6440},{"style":330},[6441],{"type":59,"value":333},{"type":54,"tag":273,"props":6443,"children":6444},{"style":285},[6445],{"type":59,"value":15},{"type":54,"tag":273,"props":6447,"children":6448},{"style":330},[6449],{"type":59,"value":343},{"type":54,"tag":273,"props":6451,"children":6452},{"style":330},[6453],{"type":59,"value":348},{"type":54,"tag":273,"props":6455,"children":6456},{"class":275,"line":419},[6457,6461,6465,6469,6473,6477,6481],{"type":54,"tag":273,"props":6458,"children":6459},{"style":313},[6460],{"type":59,"value":316},{"type":54,"tag":273,"props":6462,"children":6463},{"style":319},[6464],{"type":59,"value":322},{"type":54,"tag":273,"props":6466,"children":6467},{"style":313},[6468],{"type":59,"value":327},{"type":54,"tag":273,"props":6470,"children":6471},{"style":330},[6472],{"type":59,"value":333},{"type":54,"tag":273,"props":6474,"children":6475},{"style":285},[6476],{"type":59,"value":338},{"type":54,"tag":273,"props":6478,"children":6479},{"style":330},[6480],{"type":59,"value":343},{"type":54,"tag":273,"props":6482,"children":6483},{"style":330},[6484],{"type":59,"value":348},{"type":54,"tag":273,"props":6486,"children":6487},{"class":275,"line":464},[6488],{"type":54,"tag":273,"props":6489,"children":6490},{"emptyLinePlaceholder":691},[6491],{"type":59,"value":694},{"type":54,"tag":273,"props":6493,"children":6494},{"class":275,"line":509},[6495,6500,6505,6509,6514,6519,6523,6527,6531],{"type":54,"tag":273,"props":6496,"children":6497},{"style":380},[6498],{"type":59,"value":6499},"type",{"type":54,"tag":273,"props":6501,"children":6502},{"style":280},[6503],{"type":59,"value":6504}," ZoomClient",{"type":54,"tag":273,"props":6506,"children":6507},{"style":330},[6508],{"type":59,"value":820},{"type":54,"tag":273,"props":6510,"children":6511},{"style":280},[6512],{"type":59,"value":6513}," ReturnType",{"type":54,"tag":273,"props":6515,"children":6516},{"style":330},[6517],{"type":59,"value":6518},"\u003Ctypeof",{"type":54,"tag":273,"props":6520,"children":6521},{"style":319},[6522],{"type":59,"value":725},{"type":54,"tag":273,"props":6524,"children":6525},{"style":330},[6526],{"type":59,"value":730},{"type":54,"tag":273,"props":6528,"children":6529},{"style":319},[6530],{"type":59,"value":736},{"type":54,"tag":273,"props":6532,"children":6533},{"style":330},[6534],{"type":59,"value":6535},">;\n",{"type":54,"tag":273,"props":6537,"children":6538},{"class":275,"line":554},[6539],{"type":54,"tag":273,"props":6540,"children":6541},{"emptyLinePlaceholder":691},[6542],{"type":59,"value":694},{"type":54,"tag":273,"props":6544,"children":6545},{"class":275,"line":599},[6546,6551,6556,6561,6565,6569,6573,6577,6581,6586,6591,6595],{"type":54,"tag":273,"props":6547,"children":6548},{"style":380},[6549],{"type":59,"value":6550},"function",{"type":54,"tag":273,"props":6552,"children":6553},{"style":733},[6554],{"type":59,"value":6555}," ZoomMeeting",{"type":54,"tag":273,"props":6557,"children":6558},{"style":330},[6559],{"type":59,"value":6560},"({",{"type":54,"tag":273,"props":6562,"children":6563},{"style":3187},[6564],{"type":59,"value":1153},{"type":54,"tag":273,"props":6566,"children":6567},{"style":330},[6568],{"type":59,"value":1202},{"type":54,"tag":273,"props":6570,"children":6571},{"style":3187},[6572],{"type":59,"value":1197},{"type":54,"tag":273,"props":6574,"children":6575},{"style":330},[6576],{"type":59,"value":1202},{"type":54,"tag":273,"props":6578,"children":6579},{"style":3187},[6580],{"type":59,"value":1175},{"type":54,"tag":273,"props":6582,"children":6583},{"style":330},[6584],{"type":59,"value":6585}," }:",{"type":54,"tag":273,"props":6587,"children":6588},{"style":280},[6589],{"type":59,"value":6590}," Props",{"type":54,"tag":273,"props":6592,"children":6593},{"style":330},[6594],{"type":59,"value":857},{"type":54,"tag":273,"props":6596,"children":6597},{"style":330},[6598],{"type":59,"value":779},{"type":54,"tag":273,"props":6600,"children":6601},{"class":275,"line":782},[6602,6607,6612,6616,6620,6624,6629,6634,6639,6644,6648,6653,6657],{"type":54,"tag":273,"props":6603,"children":6604},{"style":380},[6605],{"type":59,"value":6606},"  const",{"type":54,"tag":273,"props":6608,"children":6609},{"style":319},[6610],{"type":59,"value":6611}," clientRef",{"type":54,"tag":273,"props":6613,"children":6614},{"style":330},[6615],{"type":59,"value":820},{"type":54,"tag":273,"props":6617,"children":6618},{"style":733},[6619],{"type":59,"value":6409},{"type":54,"tag":273,"props":6621,"children":6622},{"style":330},[6623],{"type":59,"value":371},{"type":54,"tag":273,"props":6625,"children":6626},{"style":280},[6627],{"type":59,"value":6628},"ZoomClient",{"type":54,"tag":273,"props":6630,"children":6631},{"style":330},[6632],{"type":59,"value":6633}," |",{"type":54,"tag":273,"props":6635,"children":6636},{"style":280},[6637],{"type":59,"value":6638}," null",{"type":54,"tag":273,"props":6640,"children":6641},{"style":330},[6642],{"type":59,"value":6643},">",{"type":54,"tag":273,"props":6645,"children":6646},{"style":374},[6647],{"type":59,"value":839},{"type":54,"tag":273,"props":6649,"children":6650},{"style":330},[6651],{"type":59,"value":6652},"null",{"type":54,"tag":273,"props":6654,"children":6655},{"style":374},[6656],{"type":59,"value":857},{"type":54,"tag":273,"props":6658,"children":6659},{"style":330},[6660],{"type":59,"value":348},{"type":54,"tag":273,"props":6662,"children":6663},{"class":275,"line":795},[6664,6668,6673,6677,6681,6685,6690,6694,6698,6702,6706],{"type":54,"tag":273,"props":6665,"children":6666},{"style":380},[6667],{"type":59,"value":6606},{"type":54,"tag":273,"props":6669,"children":6670},{"style":319},[6671],{"type":59,"value":6672}," containerRef",{"type":54,"tag":273,"props":6674,"children":6675},{"style":330},[6676],{"type":59,"value":820},{"type":54,"tag":273,"props":6678,"children":6679},{"style":733},[6680],{"type":59,"value":6409},{"type":54,"tag":273,"props":6682,"children":6683},{"style":330},[6684],{"type":59,"value":371},{"type":54,"tag":273,"props":6686,"children":6687},{"style":280},[6688],{"type":59,"value":6689},"HTMLDivElement",{"type":54,"tag":273,"props":6691,"children":6692},{"style":330},[6693],{"type":59,"value":6643},{"type":54,"tag":273,"props":6695,"children":6696},{"style":374},[6697],{"type":59,"value":839},{"type":54,"tag":273,"props":6699,"children":6700},{"style":330},[6701],{"type":59,"value":6652},{"type":54,"tag":273,"props":6703,"children":6704},{"style":374},[6705],{"type":59,"value":857},{"type":54,"tag":273,"props":6707,"children":6708},{"style":330},[6709],{"type":59,"value":348},{"type":54,"tag":273,"props":6711,"children":6712},{"class":275,"line":804},[6713,6717,6722,6727,6731,6736,6741,6745,6749,6753,6757,6761],{"type":54,"tag":273,"props":6714,"children":6715},{"style":380},[6716],{"type":59,"value":6606},{"type":54,"tag":273,"props":6718,"children":6719},{"style":330},[6720],{"type":59,"value":6721}," [",{"type":54,"tag":273,"props":6723,"children":6724},{"style":319},[6725],{"type":59,"value":6726},"isJoined",{"type":54,"tag":273,"props":6728,"children":6729},{"style":330},[6730],{"type":59,"value":1202},{"type":54,"tag":273,"props":6732,"children":6733},{"style":319},[6734],{"type":59,"value":6735}," setIsJoined",{"type":54,"tag":273,"props":6737,"children":6738},{"style":330},[6739],{"type":59,"value":6740},"]",{"type":54,"tag":273,"props":6742,"children":6743},{"style":330},[6744],{"type":59,"value":820},{"type":54,"tag":273,"props":6746,"children":6747},{"style":733},[6748],{"type":59,"value":6418},{"type":54,"tag":273,"props":6750,"children":6751},{"style":374},[6752],{"type":59,"value":839},{"type":54,"tag":273,"props":6754,"children":6755},{"style":979},[6756],{"type":59,"value":1562},{"type":54,"tag":273,"props":6758,"children":6759},{"style":374},[6760],{"type":59,"value":857},{"type":54,"tag":273,"props":6762,"children":6763},{"style":330},[6764],{"type":59,"value":348},{"type":54,"tag":273,"props":6766,"children":6767},{"class":275,"line":864},[6768,6772,6776,6780,6784,6789,6793,6797,6801,6805,6809,6813,6817,6821,6825,6829,6833],{"type":54,"tag":273,"props":6769,"children":6770},{"style":380},[6771],{"type":59,"value":6606},{"type":54,"tag":273,"props":6773,"children":6774},{"style":330},[6775],{"type":59,"value":6721},{"type":54,"tag":273,"props":6777,"children":6778},{"style":319},[6779],{"type":59,"value":1320},{"type":54,"tag":273,"props":6781,"children":6782},{"style":330},[6783],{"type":59,"value":1202},{"type":54,"tag":273,"props":6785,"children":6786},{"style":319},[6787],{"type":59,"value":6788}," setError",{"type":54,"tag":273,"props":6790,"children":6791},{"style":330},[6792],{"type":59,"value":6740},{"type":54,"tag":273,"props":6794,"children":6795},{"style":330},[6796],{"type":59,"value":820},{"type":54,"tag":273,"props":6798,"children":6799},{"style":733},[6800],{"type":59,"value":6418},{"type":54,"tag":273,"props":6802,"children":6803},{"style":330},[6804],{"type":59,"value":371},{"type":54,"tag":273,"props":6806,"children":6807},{"style":280},[6808],{"type":59,"value":1518},{"type":54,"tag":273,"props":6810,"children":6811},{"style":330},[6812],{"type":59,"value":6633},{"type":54,"tag":273,"props":6814,"children":6815},{"style":280},[6816],{"type":59,"value":6638},{"type":54,"tag":273,"props":6818,"children":6819},{"style":330},[6820],{"type":59,"value":6643},{"type":54,"tag":273,"props":6822,"children":6823},{"style":374},[6824],{"type":59,"value":839},{"type":54,"tag":273,"props":6826,"children":6827},{"style":330},[6828],{"type":59,"value":6652},{"type":54,"tag":273,"props":6830,"children":6831},{"style":374},[6832],{"type":59,"value":857},{"type":54,"tag":273,"props":6834,"children":6835},{"style":330},[6836],{"type":59,"value":348},{"type":54,"tag":273,"props":6838,"children":6839},{"class":275,"line":872},[6840],{"type":54,"tag":273,"props":6841,"children":6842},{"emptyLinePlaceholder":691},[6843],{"type":59,"value":694},{"type":54,"tag":273,"props":6845,"children":6846},{"class":275,"line":881},[6847],{"type":54,"tag":273,"props":6848,"children":6849},{"style":700},[6850],{"type":59,"value":6851},"  \u002F\u002F Create client once\n",{"type":54,"tag":273,"props":6853,"children":6854},{"class":275,"line":913},[6855,6860,6864,6868,6872],{"type":54,"tag":273,"props":6856,"children":6857},{"style":733},[6858],{"type":59,"value":6859},"  useEffect",{"type":54,"tag":273,"props":6861,"children":6862},{"style":374},[6863],{"type":59,"value":839},{"type":54,"tag":273,"props":6865,"children":6866},{"style":330},[6867],{"type":59,"value":741},{"type":54,"tag":273,"props":6869,"children":6870},{"style":380},[6871],{"type":59,"value":2534},{"type":54,"tag":273,"props":6873,"children":6874},{"style":330},[6875],{"type":59,"value":779},{"type":54,"tag":273,"props":6877,"children":6878},{"class":275,"line":936},[6879,6884,6888,6893,6898,6902,6907,6911],{"type":54,"tag":273,"props":6880,"children":6881},{"style":313},[6882],{"type":59,"value":6883},"    if",{"type":54,"tag":273,"props":6885,"children":6886},{"style":374},[6887],{"type":59,"value":1315},{"type":54,"tag":273,"props":6889,"children":6890},{"style":330},[6891],{"type":59,"value":6892},"!",{"type":54,"tag":273,"props":6894,"children":6895},{"style":319},[6896],{"type":59,"value":6897},"clientRef",{"type":54,"tag":273,"props":6899,"children":6900},{"style":330},[6901],{"type":59,"value":730},{"type":54,"tag":273,"props":6903,"children":6904},{"style":319},[6905],{"type":59,"value":6906},"current",{"type":54,"tag":273,"props":6908,"children":6909},{"style":374},[6910],{"type":59,"value":1325},{"type":54,"tag":273,"props":6912,"children":6913},{"style":330},[6914],{"type":59,"value":910},{"type":54,"tag":273,"props":6916,"children":6917},{"class":275,"line":966},[6918,6923,6927,6931,6935,6939,6943,6947,6951],{"type":54,"tag":273,"props":6919,"children":6920},{"style":319},[6921],{"type":59,"value":6922},"      clientRef",{"type":54,"tag":273,"props":6924,"children":6925},{"style":330},[6926],{"type":59,"value":730},{"type":54,"tag":273,"props":6928,"children":6929},{"style":319},[6930],{"type":59,"value":6906},{"type":54,"tag":273,"props":6932,"children":6933},{"style":330},[6934],{"type":59,"value":820},{"type":54,"tag":273,"props":6936,"children":6937},{"style":319},[6938],{"type":59,"value":725},{"type":54,"tag":273,"props":6940,"children":6941},{"style":330},[6942],{"type":59,"value":730},{"type":54,"tag":273,"props":6944,"children":6945},{"style":733},[6946],{"type":59,"value":736},{"type":54,"tag":273,"props":6948,"children":6949},{"style":374},[6950],{"type":59,"value":741},{"type":54,"tag":273,"props":6952,"children":6953},{"style":330},[6954],{"type":59,"value":348},{"type":54,"tag":273,"props":6956,"children":6957},{"class":275,"line":989},[6958],{"type":54,"tag":273,"props":6959,"children":6960},{"style":330},[6961],{"type":59,"value":2683},{"type":54,"tag":273,"props":6963,"children":6964},{"class":275,"line":1010},[6965,6970,6975],{"type":54,"tag":273,"props":6966,"children":6967},{"style":330},[6968],{"type":59,"value":6969},"  },",{"type":54,"tag":273,"props":6971,"children":6972},{"style":374},[6973],{"type":59,"value":6974}," [])",{"type":54,"tag":273,"props":6976,"children":6977},{"style":330},[6978],{"type":59,"value":348},{"type":54,"tag":273,"props":6980,"children":6981},{"class":275,"line":1031},[6982],{"type":54,"tag":273,"props":6983,"children":6984},{"emptyLinePlaceholder":691},[6985],{"type":59,"value":694},{"type":54,"tag":273,"props":6987,"children":6988},{"class":275,"line":1048},[6989,6993,6997,7001,7005,7009,7013,7017,7021],{"type":54,"tag":273,"props":6990,"children":6991},{"style":380},[6992],{"type":59,"value":6606},{"type":54,"tag":273,"props":6994,"children":6995},{"style":319},[6996],{"type":59,"value":770},{"type":54,"tag":273,"props":6998,"children":6999},{"style":330},[7000],{"type":59,"value":820},{"type":54,"tag":273,"props":7002,"children":7003},{"style":733},[7004],{"type":59,"value":6427},{"type":54,"tag":273,"props":7006,"children":7007},{"style":374},[7008],{"type":59,"value":839},{"type":54,"tag":273,"props":7010,"children":7011},{"style":380},[7012],{"type":59,"value":760},{"type":54,"tag":273,"props":7014,"children":7015},{"style":330},[7016],{"type":59,"value":2529},{"type":54,"tag":273,"props":7018,"children":7019},{"style":380},[7020],{"type":59,"value":2534},{"type":54,"tag":273,"props":7022,"children":7023},{"style":330},[7024],{"type":59,"value":779},{"type":54,"tag":273,"props":7026,"children":7027},{"class":275,"line":1056},[7028,7032,7036,7040,7044,7048,7052,7057,7062,7067,7071,7075,7079,7084],{"type":54,"tag":273,"props":7029,"children":7030},{"style":313},[7031],{"type":59,"value":6883},{"type":54,"tag":273,"props":7033,"children":7034},{"style":374},[7035],{"type":59,"value":1315},{"type":54,"tag":273,"props":7037,"children":7038},{"style":330},[7039],{"type":59,"value":6892},{"type":54,"tag":273,"props":7041,"children":7042},{"style":319},[7043],{"type":59,"value":6897},{"type":54,"tag":273,"props":7045,"children":7046},{"style":330},[7047],{"type":59,"value":730},{"type":54,"tag":273,"props":7049,"children":7050},{"style":319},[7051],{"type":59,"value":6906},{"type":54,"tag":273,"props":7053,"children":7054},{"style":330},[7055],{"type":59,"value":7056}," ||",{"type":54,"tag":273,"props":7058,"children":7059},{"style":330},[7060],{"type":59,"value":7061}," !",{"type":54,"tag":273,"props":7063,"children":7064},{"style":319},[7065],{"type":59,"value":7066},"containerRef",{"type":54,"tag":273,"props":7068,"children":7069},{"style":330},[7070],{"type":59,"value":730},{"type":54,"tag":273,"props":7072,"children":7073},{"style":319},[7074],{"type":59,"value":6906},{"type":54,"tag":273,"props":7076,"children":7077},{"style":374},[7078],{"type":59,"value":1325},{"type":54,"tag":273,"props":7080,"children":7081},{"style":313},[7082],{"type":59,"value":7083},"return",{"type":54,"tag":273,"props":7085,"children":7086},{"style":330},[7087],{"type":59,"value":348},{"type":54,"tag":273,"props":7089,"children":7090},{"class":275,"line":1065},[7091],{"type":54,"tag":273,"props":7092,"children":7093},{"emptyLinePlaceholder":691},[7094],{"type":59,"value":694},{"type":54,"tag":273,"props":7096,"children":7097},{"class":275,"line":1094},[7098,7103],{"type":54,"tag":273,"props":7099,"children":7100},{"style":313},[7101],{"type":59,"value":7102},"    try",{"type":54,"tag":273,"props":7104,"children":7105},{"style":330},[7106],{"type":59,"value":779},{"type":54,"tag":273,"props":7108,"children":7109},{"class":275,"line":1116},[7110],{"type":54,"tag":273,"props":7111,"children":7112},{"style":700},[7113],{"type":59,"value":7114},"      \u002F\u002F Get signature from backend\n",{"type":54,"tag":273,"props":7116,"children":7117},{"class":275,"line":1138},[7118,7123,7127,7131,7135,7139,7143,7147,7151,7156,7160,7164,7168],{"type":54,"tag":273,"props":7119,"children":7120},{"style":380},[7121],{"type":59,"value":7122},"      const",{"type":54,"tag":273,"props":7124,"children":7125},{"style":330},[7126],{"type":59,"value":6395},{"type":54,"tag":273,"props":7128,"children":7129},{"style":319},[7130],{"type":59,"value":1109},{"type":54,"tag":273,"props":7132,"children":7133},{"style":330},[7134],{"type":59,"value":1202},{"type":54,"tag":273,"props":7136,"children":7137},{"style":319},[7138],{"type":59,"value":1131},{"type":54,"tag":273,"props":7140,"children":7141},{"style":330},[7142],{"type":59,"value":6432},{"type":54,"tag":273,"props":7144,"children":7145},{"style":330},[7146],{"type":59,"value":820},{"type":54,"tag":273,"props":7148,"children":7149},{"style":313},[7150],{"type":59,"value":6185},{"type":54,"tag":273,"props":7152,"children":7153},{"style":733},[7154],{"type":59,"value":7155}," fetchSignature",{"type":54,"tag":273,"props":7157,"children":7158},{"style":374},[7159],{"type":59,"value":839},{"type":54,"tag":273,"props":7161,"children":7162},{"style":319},[7163],{"type":59,"value":2805},{"type":54,"tag":273,"props":7165,"children":7166},{"style":374},[7167],{"type":59,"value":857},{"type":54,"tag":273,"props":7169,"children":7170},{"style":330},[7171],{"type":59,"value":348},{"type":54,"tag":273,"props":7173,"children":7174},{"class":275,"line":1160},[7175],{"type":54,"tag":273,"props":7176,"children":7177},{"style":374},[7178],{"type":59,"value":7179},"      \n",{"type":54,"tag":273,"props":7181,"children":7182},{"class":275,"line":1182},[7183,7188,7192,7196,7200,7204,7208,7212],{"type":54,"tag":273,"props":7184,"children":7185},{"style":313},[7186],{"type":59,"value":7187},"      await",{"type":54,"tag":273,"props":7189,"children":7190},{"style":319},[7191],{"type":59,"value":6611},{"type":54,"tag":273,"props":7193,"children":7194},{"style":330},[7195],{"type":59,"value":730},{"type":54,"tag":273,"props":7197,"children":7198},{"style":319},[7199],{"type":59,"value":6906},{"type":54,"tag":273,"props":7201,"children":7202},{"style":330},[7203],{"type":59,"value":730},{"type":54,"tag":273,"props":7205,"children":7206},{"style":733},[7207],{"type":59,"value":901},{"type":54,"tag":273,"props":7209,"children":7210},{"style":374},[7211],{"type":59,"value":839},{"type":54,"tag":273,"props":7213,"children":7214},{"style":330},[7215],{"type":59,"value":910},{"type":54,"tag":273,"props":7217,"children":7218},{"class":275,"line":1210},[7219,7224,7228,7232,7236,7240],{"type":54,"tag":273,"props":7220,"children":7221},{"style":374},[7222],{"type":59,"value":7223},"        zoomAppRoot",{"type":54,"tag":273,"props":7225,"children":7226},{"style":330},[7227],{"type":59,"value":924},{"type":54,"tag":273,"props":7229,"children":7230},{"style":319},[7231],{"type":59,"value":6672},{"type":54,"tag":273,"props":7233,"children":7234},{"style":330},[7235],{"type":59,"value":730},{"type":54,"tag":273,"props":7237,"children":7238},{"style":319},[7239],{"type":59,"value":6906},{"type":54,"tag":273,"props":7241,"children":7242},{"style":330},[7243],{"type":59,"value":933},{"type":54,"tag":273,"props":7245,"children":7246},{"class":275,"line":1232},[7247,7252,7256,7260,7264,7268],{"type":54,"tag":273,"props":7248,"children":7249},{"style":374},[7250],{"type":59,"value":7251},"        language",{"type":54,"tag":273,"props":7253,"children":7254},{"style":330},[7255],{"type":59,"value":924},{"type":54,"tag":273,"props":7257,"children":7258},{"style":330},[7259],{"type":59,"value":333},{"type":54,"tag":273,"props":7261,"children":7262},{"style":285},[7263],{"type":59,"value":955},{"type":54,"tag":273,"props":7265,"children":7266},{"style":330},[7267],{"type":59,"value":343},{"type":54,"tag":273,"props":7269,"children":7270},{"style":330},[7271],{"type":59,"value":933},{"type":54,"tag":273,"props":7273,"children":7274},{"class":275,"line":1248},[7275,7280,7284,7288],{"type":54,"tag":273,"props":7276,"children":7277},{"style":374},[7278],{"type":59,"value":7279},"        patchJsMedia",{"type":54,"tag":273,"props":7281,"children":7282},{"style":330},[7283],{"type":59,"value":924},{"type":54,"tag":273,"props":7285,"children":7286},{"style":979},[7287],{"type":59,"value":982},{"type":54,"tag":273,"props":7289,"children":7290},{"style":330},[7291],{"type":59,"value":933},{"type":54,"tag":273,"props":7293,"children":7294},{"class":275,"line":1256},[7295,7300,7304,7308],{"type":54,"tag":273,"props":7296,"children":7297},{"style":374},[7298],{"type":59,"value":7299},"        leaveOnPageUnload",{"type":54,"tag":273,"props":7301,"children":7302},{"style":330},[7303],{"type":59,"value":924},{"type":54,"tag":273,"props":7305,"children":7306},{"style":979},[7307],{"type":59,"value":982},{"type":54,"tag":273,"props":7309,"children":7310},{"style":330},[7311],{"type":59,"value":933},{"type":54,"tag":273,"props":7313,"children":7314},{"class":275,"line":1299},[7315,7320,7324],{"type":54,"tag":273,"props":7316,"children":7317},{"style":330},[7318],{"type":59,"value":7319},"      }",{"type":54,"tag":273,"props":7321,"children":7322},{"style":374},[7323],{"type":59,"value":857},{"type":54,"tag":273,"props":7325,"children":7326},{"style":330},[7327],{"type":59,"value":348},{"type":54,"tag":273,"props":7329,"children":7330},{"class":275,"line":1332},[7331],{"type":54,"tag":273,"props":7332,"children":7333},{"emptyLinePlaceholder":691},[7334],{"type":59,"value":694},{"type":54,"tag":273,"props":7336,"children":7337},{"class":275,"line":1382},[7338,7342,7346,7350,7354,7358,7362,7366],{"type":54,"tag":273,"props":7339,"children":7340},{"style":313},[7341],{"type":59,"value":7187},{"type":54,"tag":273,"props":7343,"children":7344},{"style":319},[7345],{"type":59,"value":6611},{"type":54,"tag":273,"props":7347,"children":7348},{"style":330},[7349],{"type":59,"value":730},{"type":54,"tag":273,"props":7351,"children":7352},{"style":319},[7353],{"type":59,"value":6906},{"type":54,"tag":273,"props":7355,"children":7356},{"style":330},[7357],{"type":59,"value":730},{"type":54,"tag":273,"props":7359,"children":7360},{"style":733},[7361],{"type":59,"value":1083},{"type":54,"tag":273,"props":7363,"children":7364},{"style":374},[7365],{"type":59,"value":839},{"type":54,"tag":273,"props":7367,"children":7368},{"style":330},[7369],{"type":59,"value":910},{"type":54,"tag":273,"props":7371,"children":7372},{"class":275,"line":1391},[7373,7378],{"type":54,"tag":273,"props":7374,"children":7375},{"style":319},[7376],{"type":59,"value":7377},"        signature",{"type":54,"tag":273,"props":7379,"children":7380},{"style":330},[7381],{"type":59,"value":933},{"type":54,"tag":273,"props":7383,"children":7384},{"class":275,"line":2402},[7385,7390],{"type":54,"tag":273,"props":7386,"children":7387},{"style":319},[7388],{"type":59,"value":7389},"        sdkKey",{"type":54,"tag":273,"props":7391,"children":7392},{"style":330},[7393],{"type":59,"value":933},{"type":54,"tag":273,"props":7395,"children":7396},{"class":275,"line":2411},[7397,7402],{"type":54,"tag":273,"props":7398,"children":7399},{"style":319},[7400],{"type":59,"value":7401},"        meetingNumber",{"type":54,"tag":273,"props":7403,"children":7404},{"style":330},[7405],{"type":59,"value":933},{"type":54,"tag":273,"props":7407,"children":7408},{"class":275,"line":2428},[7409,7414],{"type":54,"tag":273,"props":7410,"children":7411},{"style":319},[7412],{"type":59,"value":7413},"        password",{"type":54,"tag":273,"props":7415,"children":7416},{"style":330},[7417],{"type":59,"value":933},{"type":54,"tag":273,"props":7419,"children":7420},{"class":275,"line":2445},[7421,7426],{"type":54,"tag":273,"props":7422,"children":7423},{"style":319},[7424],{"type":59,"value":7425},"        userName",{"type":54,"tag":273,"props":7427,"children":7428},{"style":330},[7429],{"type":59,"value":933},{"type":54,"tag":273,"props":7431,"children":7432},{"class":275,"line":2454},[7433,7437,7441],{"type":54,"tag":273,"props":7434,"children":7435},{"style":330},[7436],{"type":59,"value":7319},{"type":54,"tag":273,"props":7438,"children":7439},{"style":374},[7440],{"type":59,"value":857},{"type":54,"tag":273,"props":7442,"children":7443},{"style":330},[7444],{"type":59,"value":348},{"type":54,"tag":273,"props":7446,"children":7447},{"class":275,"line":2484},[7448],{"type":54,"tag":273,"props":7449,"children":7450},{"emptyLinePlaceholder":691},[7451],{"type":59,"value":694},{"type":54,"tag":273,"props":7453,"children":7454},{"class":275,"line":2514},[7455,7460,7464,7468,7472],{"type":54,"tag":273,"props":7456,"children":7457},{"style":733},[7458],{"type":59,"value":7459},"      setIsJoined",{"type":54,"tag":273,"props":7461,"children":7462},{"style":374},[7463],{"type":59,"value":839},{"type":54,"tag":273,"props":7465,"children":7466},{"style":979},[7467],{"type":59,"value":1696},{"type":54,"tag":273,"props":7469,"children":7470},{"style":374},[7471],{"type":59,"value":857},{"type":54,"tag":273,"props":7473,"children":7474},{"style":330},[7475],{"type":59,"value":348},{"type":54,"tag":273,"props":7477,"children":7478},{"class":275,"line":2541},[7479,7483,7487,7491,7496,7500],{"type":54,"tag":273,"props":7480,"children":7481},{"style":330},[7482],{"type":59,"value":1037},{"type":54,"tag":273,"props":7484,"children":7485},{"style":313},[7486],{"type":59,"value":1310},{"type":54,"tag":273,"props":7488,"children":7489},{"style":374},[7490],{"type":59,"value":1315},{"type":54,"tag":273,"props":7492,"children":7493},{"style":319},[7494],{"type":59,"value":7495},"err",{"type":54,"tag":273,"props":7497,"children":7498},{"style":374},[7499],{"type":59,"value":1325},{"type":54,"tag":273,"props":7501,"children":7502},{"style":330},[7503],{"type":59,"value":910},{"type":54,"tag":273,"props":7505,"children":7506},{"class":275,"line":2583},[7507,7512,7516,7520,7525,7530,7535,7540,7544,7549,7554,7558,7563,7567,7571],{"type":54,"tag":273,"props":7508,"children":7509},{"style":733},[7510],{"type":59,"value":7511},"      setError",{"type":54,"tag":273,"props":7513,"children":7514},{"style":374},[7515],{"type":59,"value":839},{"type":54,"tag":273,"props":7517,"children":7518},{"style":319},[7519],{"type":59,"value":7495},{"type":54,"tag":273,"props":7521,"children":7522},{"style":330},[7523],{"type":59,"value":7524}," instanceof",{"type":54,"tag":273,"props":7526,"children":7527},{"style":280},[7528],{"type":59,"value":7529}," Error",{"type":54,"tag":273,"props":7531,"children":7532},{"style":330},[7533],{"type":59,"value":7534}," ?",{"type":54,"tag":273,"props":7536,"children":7537},{"style":319},[7538],{"type":59,"value":7539}," err",{"type":54,"tag":273,"props":7541,"children":7542},{"style":330},[7543],{"type":59,"value":730},{"type":54,"tag":273,"props":7545,"children":7546},{"style":319},[7547],{"type":59,"value":7548},"message",{"type":54,"tag":273,"props":7550,"children":7551},{"style":330},[7552],{"type":59,"value":7553}," :",{"type":54,"tag":273,"props":7555,"children":7556},{"style":330},[7557],{"type":59,"value":333},{"type":54,"tag":273,"props":7559,"children":7560},{"style":285},[7561],{"type":59,"value":7562},"Failed to join",{"type":54,"tag":273,"props":7564,"children":7565},{"style":330},[7566],{"type":59,"value":343},{"type":54,"tag":273,"props":7568,"children":7569},{"style":374},[7570],{"type":59,"value":857},{"type":54,"tag":273,"props":7572,"children":7573},{"style":330},[7574],{"type":59,"value":348},{"type":54,"tag":273,"props":7576,"children":7577},{"class":275,"line":2592},[7578],{"type":54,"tag":273,"props":7579,"children":7580},{"style":330},[7581],{"type":59,"value":2683},{"type":54,"tag":273,"props":7583,"children":7584},{"class":275,"line":2600},[7585,7589,7593,7597,7601,7605,7609,7613,7618],{"type":54,"tag":273,"props":7586,"children":7587},{"style":330},[7588],{"type":59,"value":6969},{"type":54,"tag":273,"props":7590,"children":7591},{"style":374},[7592],{"type":59,"value":6721},{"type":54,"tag":273,"props":7594,"children":7595},{"style":319},[7596],{"type":59,"value":2805},{"type":54,"tag":273,"props":7598,"children":7599},{"style":330},[7600],{"type":59,"value":1202},{"type":54,"tag":273,"props":7602,"children":7603},{"style":319},[7604],{"type":59,"value":1197},{"type":54,"tag":273,"props":7606,"children":7607},{"style":330},[7608],{"type":59,"value":1202},{"type":54,"tag":273,"props":7610,"children":7611},{"style":319},[7612],{"type":59,"value":1175},{"type":54,"tag":273,"props":7614,"children":7615},{"style":374},[7616],{"type":59,"value":7617},"])",{"type":54,"tag":273,"props":7619,"children":7620},{"style":330},[7621],{"type":59,"value":348},{"type":54,"tag":273,"props":7623,"children":7624},{"class":275,"line":2609},[7625],{"type":54,"tag":273,"props":7626,"children":7627},{"emptyLinePlaceholder":691},[7628],{"type":59,"value":694},{"type":54,"tag":273,"props":7630,"children":7631},{"class":275,"line":2617},[7632,7637],{"type":54,"tag":273,"props":7633,"children":7634},{"style":313},[7635],{"type":59,"value":7636},"  return",{"type":54,"tag":273,"props":7638,"children":7639},{"style":374},[7640],{"type":59,"value":7641}," (\n",{"type":54,"tag":273,"props":7643,"children":7644},{"class":275,"line":2625},[7645,7650,7655],{"type":54,"tag":273,"props":7646,"children":7647},{"style":330},[7648],{"type":59,"value":7649},"    \u003C",{"type":54,"tag":273,"props":7651,"children":7652},{"style":374},[7653],{"type":59,"value":7654},"div",{"type":54,"tag":273,"props":7656,"children":7657},{"style":330},[7658],{"type":59,"value":416},{"type":54,"tag":273,"props":7660,"children":7661},{"class":275,"line":2634},[7662,7667,7671],{"type":54,"tag":273,"props":7663,"children":7664},{"style":330},[7665],{"type":59,"value":7666},"      \u003C",{"type":54,"tag":273,"props":7668,"children":7669},{"style":374},[7670],{"type":59,"value":7654},{"type":54,"tag":273,"props":7672,"children":7673},{"style":330},[7674],{"type":59,"value":1995},{"type":54,"tag":273,"props":7676,"children":7677},{"class":275,"line":2651},[7678,7683,7688,7692],{"type":54,"tag":273,"props":7679,"children":7680},{"style":380},[7681],{"type":59,"value":7682},"        ref",{"type":54,"tag":273,"props":7684,"children":7685},{"style":330},[7686],{"type":59,"value":7687},"={",{"type":54,"tag":273,"props":7689,"children":7690},{"style":319},[7691],{"type":59,"value":7066},{"type":54,"tag":273,"props":7693,"children":7694},{"style":330},[7695],{"type":59,"value":7696},"} \n",{"type":54,"tag":273,"props":7698,"children":7699},{"class":275,"line":2677},[7700,7705,7710,7715,7719,7723,7728,7732,7736,7741,7745,7749,7754,7758],{"type":54,"tag":273,"props":7701,"children":7702},{"style":380},[7703],{"type":59,"value":7704},"        style",{"type":54,"tag":273,"props":7706,"children":7707},{"style":330},[7708],{"type":59,"value":7709},"={{",{"type":54,"tag":273,"props":7711,"children":7712},{"style":374},[7713],{"type":59,"value":7714}," width",{"type":54,"tag":273,"props":7716,"children":7717},{"style":330},[7718],{"type":59,"value":924},{"type":54,"tag":273,"props":7720,"children":7721},{"style":330},[7722],{"type":59,"value":333},{"type":54,"tag":273,"props":7724,"children":7725},{"style":285},[7726],{"type":59,"value":7727},"100%",{"type":54,"tag":273,"props":7729,"children":7730},{"style":330},[7731],{"type":59,"value":343},{"type":54,"tag":273,"props":7733,"children":7734},{"style":330},[7735],{"type":59,"value":1202},{"type":54,"tag":273,"props":7737,"children":7738},{"style":374},[7739],{"type":59,"value":7740}," height",{"type":54,"tag":273,"props":7742,"children":7743},{"style":330},[7744],{"type":59,"value":924},{"type":54,"tag":273,"props":7746,"children":7747},{"style":330},[7748],{"type":59,"value":333},{"type":54,"tag":273,"props":7750,"children":7751},{"style":285},[7752],{"type":59,"value":7753},"500px",{"type":54,"tag":273,"props":7755,"children":7756},{"style":330},[7757],{"type":59,"value":343},{"type":54,"tag":273,"props":7759,"children":7760},{"style":330},[7761],{"type":59,"value":7762}," }} \n",{"type":54,"tag":273,"props":7764,"children":7765},{"class":275,"line":2686},[7766],{"type":54,"tag":273,"props":7767,"children":7768},{"style":330},[7769],{"type":59,"value":7770},"      \u002F>\n",{"type":54,"tag":273,"props":7772,"children":7773},{"class":275,"line":2694},[7774,7779,7784,7789],{"type":54,"tag":273,"props":7775,"children":7776},{"style":330},[7777],{"type":59,"value":7778},"      {!",{"type":54,"tag":273,"props":7780,"children":7781},{"style":319},[7782],{"type":59,"value":7783},"isJoined ",{"type":54,"tag":273,"props":7785,"children":7786},{"style":330},[7787],{"type":59,"value":7788},"&&",{"type":54,"tag":273,"props":7790,"children":7791},{"style":319},[7792],{"type":59,"value":7641},{"type":54,"tag":273,"props":7794,"children":7796},{"class":275,"line":7795},54,[7797,7802,7807,7812,7816,7821,7826,7831,7836,7840],{"type":54,"tag":273,"props":7798,"children":7799},{"style":330},[7800],{"type":59,"value":7801},"        \u003C",{"type":54,"tag":273,"props":7803,"children":7804},{"style":374},[7805],{"type":59,"value":7806},"button",{"type":54,"tag":273,"props":7808,"children":7809},{"style":380},[7810],{"type":59,"value":7811}," onClick",{"type":54,"tag":273,"props":7813,"children":7814},{"style":330},[7815],{"type":59,"value":7687},{"type":54,"tag":273,"props":7817,"children":7818},{"style":319},[7819],{"type":59,"value":7820},"joinMeeting",{"type":54,"tag":273,"props":7822,"children":7823},{"style":330},[7824],{"type":59,"value":7825},"}>",{"type":54,"tag":273,"props":7827,"children":7828},{"style":319},[7829],{"type":59,"value":7830},"Join Meeting",{"type":54,"tag":273,"props":7832,"children":7833},{"style":330},[7834],{"type":59,"value":7835},"\u003C\u002F",{"type":54,"tag":273,"props":7837,"children":7838},{"style":374},[7839],{"type":59,"value":7806},{"type":54,"tag":273,"props":7841,"children":7842},{"style":330},[7843],{"type":59,"value":416},{"type":54,"tag":273,"props":7845,"children":7847},{"class":275,"line":7846},55,[7848,7853],{"type":54,"tag":273,"props":7849,"children":7850},{"style":319},[7851],{"type":59,"value":7852},"      )",{"type":54,"tag":273,"props":7854,"children":7855},{"style":330},[7856],{"type":59,"value":1397},{"type":54,"tag":273,"props":7858,"children":7860},{"class":275,"line":7859},56,[7861,7866,7871,7875,7880,7884,7889,7893,7897,7901,7905,7910,7914,7919,7923],{"type":54,"tag":273,"props":7862,"children":7863},{"style":330},[7864],{"type":59,"value":7865},"      {",{"type":54,"tag":273,"props":7867,"children":7868},{"style":319},[7869],{"type":59,"value":7870},"error ",{"type":54,"tag":273,"props":7872,"children":7873},{"style":330},[7874],{"type":59,"value":7788},{"type":54,"tag":273,"props":7876,"children":7877},{"style":330},[7878],{"type":59,"value":7879}," \u003C",{"type":54,"tag":273,"props":7881,"children":7882},{"style":374},[7883],{"type":59,"value":7654},{"type":54,"tag":273,"props":7885,"children":7886},{"style":380},[7887],{"type":59,"value":7888}," className",{"type":54,"tag":273,"props":7890,"children":7891},{"style":330},[7892],{"type":59,"value":388},{"type":54,"tag":273,"props":7894,"children":7895},{"style":330},[7896],{"type":59,"value":393},{"type":54,"tag":273,"props":7898,"children":7899},{"style":285},[7900],{"type":59,"value":1320},{"type":54,"tag":273,"props":7902,"children":7903},{"style":330},[7904],{"type":59,"value":393},{"type":54,"tag":273,"props":7906,"children":7907},{"style":330},[7908],{"type":59,"value":7909},">{",{"type":54,"tag":273,"props":7911,"children":7912},{"style":319},[7913],{"type":59,"value":1320},{"type":54,"tag":273,"props":7915,"children":7916},{"style":330},[7917],{"type":59,"value":7918},"}\u003C\u002F",{"type":54,"tag":273,"props":7920,"children":7921},{"style":374},[7922],{"type":59,"value":7654},{"type":54,"tag":273,"props":7924,"children":7925},{"style":330},[7926],{"type":59,"value":7927},">}\n",{"type":54,"tag":273,"props":7929,"children":7931},{"class":275,"line":7930},57,[7932,7937,7941],{"type":54,"tag":273,"props":7933,"children":7934},{"style":330},[7935],{"type":59,"value":7936},"    \u003C\u002F",{"type":54,"tag":273,"props":7938,"children":7939},{"style":374},[7940],{"type":59,"value":7654},{"type":54,"tag":273,"props":7942,"children":7943},{"style":330},[7944],{"type":59,"value":416},{"type":54,"tag":273,"props":7946,"children":7948},{"class":275,"line":7947},58,[7949,7954],{"type":54,"tag":273,"props":7950,"children":7951},{"style":374},[7952],{"type":59,"value":7953},"  )",{"type":54,"tag":273,"props":7955,"children":7956},{"style":330},[7957],{"type":59,"value":348},{"type":54,"tag":273,"props":7959,"children":7961},{"class":275,"line":7960},59,[7962],{"type":54,"tag":273,"props":7963,"children":7964},{"style":330},[7965],{"type":59,"value":1397},{"type":54,"tag":255,"props":7967,"children":7969},{"id":7968},"event-handling-in-react",[7970],{"type":59,"value":7971},"Event Handling in React",{"type":54,"tag":262,"props":7973,"children":7975},{"className":6377,"code":7974,"language":6379,"meta":267,"style":267},"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",[7976],{"type":54,"tag":93,"props":7977,"children":7978},{"__ignoreMap":267},[7979,8003,8042,8049,8094,8142,8165,8222,8245,8252,8260,8267,8311,8359,8366,8373,8429,8484,8491,8510,8567,8622,8629],{"type":54,"tag":273,"props":7980,"children":7981},{"class":275,"line":276},[7982,7987,7991,7995,7999],{"type":54,"tag":273,"props":7983,"children":7984},{"style":733},[7985],{"type":59,"value":7986},"useEffect",{"type":54,"tag":273,"props":7988,"children":7989},{"style":319},[7990],{"type":59,"value":839},{"type":54,"tag":273,"props":7992,"children":7993},{"style":330},[7994],{"type":59,"value":741},{"type":54,"tag":273,"props":7996,"children":7997},{"style":380},[7998],{"type":59,"value":2534},{"type":54,"tag":273,"props":8000,"children":8001},{"style":330},[8002],{"type":59,"value":779},{"type":54,"tag":273,"props":8004,"children":8005},{"class":275,"line":419},[8006,8010,8014,8018,8022,8026,8030,8034,8038],{"type":54,"tag":273,"props":8007,"children":8008},{"style":313},[8009],{"type":59,"value":3285},{"type":54,"tag":273,"props":8011,"children":8012},{"style":374},[8013],{"type":59,"value":1315},{"type":54,"tag":273,"props":8015,"children":8016},{"style":330},[8017],{"type":59,"value":6892},{"type":54,"tag":273,"props":8019,"children":8020},{"style":319},[8021],{"type":59,"value":6897},{"type":54,"tag":273,"props":8023,"children":8024},{"style":330},[8025],{"type":59,"value":730},{"type":54,"tag":273,"props":8027,"children":8028},{"style":319},[8029],{"type":59,"value":6906},{"type":54,"tag":273,"props":8031,"children":8032},{"style":374},[8033],{"type":59,"value":1325},{"type":54,"tag":273,"props":8035,"children":8036},{"style":313},[8037],{"type":59,"value":7083},{"type":54,"tag":273,"props":8039,"children":8040},{"style":330},[8041],{"type":59,"value":348},{"type":54,"tag":273,"props":8043,"children":8044},{"class":275,"line":464},[8045],{"type":54,"tag":273,"props":8046,"children":8047},{"style":374},[8048],{"type":59,"value":3277},{"type":54,"tag":273,"props":8050,"children":8051},{"class":275,"line":509},[8052,8056,8061,8065,8069,8073,8077,8082,8086,8090],{"type":54,"tag":273,"props":8053,"children":8054},{"style":380},[8055],{"type":59,"value":6606},{"type":54,"tag":273,"props":8057,"children":8058},{"style":319},[8059],{"type":59,"value":8060}," handleConnectionChange",{"type":54,"tag":273,"props":8062,"children":8063},{"style":330},[8064],{"type":59,"value":820},{"type":54,"tag":273,"props":8066,"children":8067},{"style":330},[8068],{"type":59,"value":1315},{"type":54,"tag":273,"props":8070,"children":8071},{"style":3187},[8072],{"type":59,"value":3190},{"type":54,"tag":273,"props":8074,"children":8075},{"style":330},[8076],{"type":59,"value":924},{"type":54,"tag":273,"props":8078,"children":8079},{"style":280},[8080],{"type":59,"value":8081}," any",{"type":54,"tag":273,"props":8083,"children":8084},{"style":330},[8085],{"type":59,"value":857},{"type":54,"tag":273,"props":8087,"children":8088},{"style":380},[8089],{"type":59,"value":2534},{"type":54,"tag":273,"props":8091,"children":8092},{"style":330},[8093],{"type":59,"value":779},{"type":54,"tag":273,"props":8095,"children":8096},{"class":275,"line":554},[8097,8101,8105,8109,8113,8117,8121,8125,8130,8134,8138],{"type":54,"tag":273,"props":8098,"children":8099},{"style":313},[8100],{"type":59,"value":6883},{"type":54,"tag":273,"props":8102,"children":8103},{"style":374},[8104],{"type":59,"value":1315},{"type":54,"tag":273,"props":8106,"children":8107},{"style":319},[8108],{"type":59,"value":3190},{"type":54,"tag":273,"props":8110,"children":8111},{"style":330},[8112],{"type":59,"value":730},{"type":54,"tag":273,"props":8114,"children":8115},{"style":319},[8116],{"type":59,"value":3261},{"type":54,"tag":273,"props":8118,"children":8119},{"style":330},[8120],{"type":59,"value":3306},{"type":54,"tag":273,"props":8122,"children":8123},{"style":330},[8124],{"type":59,"value":333},{"type":54,"tag":273,"props":8126,"children":8127},{"style":285},[8128],{"type":59,"value":8129},"Connected",{"type":54,"tag":273,"props":8131,"children":8132},{"style":330},[8133],{"type":59,"value":343},{"type":54,"tag":273,"props":8135,"children":8136},{"style":374},[8137],{"type":59,"value":1325},{"type":54,"tag":273,"props":8139,"children":8140},{"style":330},[8141],{"type":59,"value":910},{"type":54,"tag":273,"props":8143,"children":8144},{"class":275,"line":599},[8145,8149,8153,8157,8161],{"type":54,"tag":273,"props":8146,"children":8147},{"style":733},[8148],{"type":59,"value":7459},{"type":54,"tag":273,"props":8150,"children":8151},{"style":374},[8152],{"type":59,"value":839},{"type":54,"tag":273,"props":8154,"children":8155},{"style":979},[8156],{"type":59,"value":1696},{"type":54,"tag":273,"props":8158,"children":8159},{"style":374},[8160],{"type":59,"value":857},{"type":54,"tag":273,"props":8162,"children":8163},{"style":330},[8164],{"type":59,"value":348},{"type":54,"tag":273,"props":8166,"children":8167},{"class":275,"line":782},[8168,8172,8177,8182,8186,8190,8194,8198,8202,8206,8210,8214,8218],{"type":54,"tag":273,"props":8169,"children":8170},{"style":330},[8171],{"type":59,"value":1037},{"type":54,"tag":273,"props":8173,"children":8174},{"style":313},[8175],{"type":59,"value":8176}," else",{"type":54,"tag":273,"props":8178,"children":8179},{"style":313},[8180],{"type":59,"value":8181}," if",{"type":54,"tag":273,"props":8183,"children":8184},{"style":374},[8185],{"type":59,"value":1315},{"type":54,"tag":273,"props":8187,"children":8188},{"style":319},[8189],{"type":59,"value":3190},{"type":54,"tag":273,"props":8191,"children":8192},{"style":330},[8193],{"type":59,"value":730},{"type":54,"tag":273,"props":8195,"children":8196},{"style":319},[8197],{"type":59,"value":3261},{"type":54,"tag":273,"props":8199,"children":8200},{"style":330},[8201],{"type":59,"value":3306},{"type":54,"tag":273,"props":8203,"children":8204},{"style":330},[8205],{"type":59,"value":333},{"type":54,"tag":273,"props":8207,"children":8208},{"style":285},[8209],{"type":59,"value":3315},{"type":54,"tag":273,"props":8211,"children":8212},{"style":330},[8213],{"type":59,"value":343},{"type":54,"tag":273,"props":8215,"children":8216},{"style":374},[8217],{"type":59,"value":1325},{"type":54,"tag":273,"props":8219,"children":8220},{"style":330},[8221],{"type":59,"value":910},{"type":54,"tag":273,"props":8223,"children":8224},{"class":275,"line":795},[8225,8229,8233,8237,8241],{"type":54,"tag":273,"props":8226,"children":8227},{"style":733},[8228],{"type":59,"value":7459},{"type":54,"tag":273,"props":8230,"children":8231},{"style":374},[8232],{"type":59,"value":839},{"type":54,"tag":273,"props":8234,"children":8235},{"style":979},[8236],{"type":59,"value":1562},{"type":54,"tag":273,"props":8238,"children":8239},{"style":374},[8240],{"type":59,"value":857},{"type":54,"tag":273,"props":8242,"children":8243},{"style":330},[8244],{"type":59,"value":348},{"type":54,"tag":273,"props":8246,"children":8247},{"class":275,"line":804},[8248],{"type":54,"tag":273,"props":8249,"children":8250},{"style":330},[8251],{"type":59,"value":2683},{"type":54,"tag":273,"props":8253,"children":8254},{"class":275,"line":864},[8255],{"type":54,"tag":273,"props":8256,"children":8257},{"style":330},[8258],{"type":59,"value":8259},"  };\n",{"type":54,"tag":273,"props":8261,"children":8262},{"class":275,"line":872},[8263],{"type":54,"tag":273,"props":8264,"children":8265},{"emptyLinePlaceholder":691},[8266],{"type":59,"value":694},{"type":54,"tag":273,"props":8268,"children":8269},{"class":275,"line":881},[8270,8274,8279,8283,8287,8291,8295,8299,8303,8307],{"type":54,"tag":273,"props":8271,"children":8272},{"style":380},[8273],{"type":59,"value":6606},{"type":54,"tag":273,"props":8275,"children":8276},{"style":319},[8277],{"type":59,"value":8278}," handleUserAdded",{"type":54,"tag":273,"props":8280,"children":8281},{"style":330},[8282],{"type":59,"value":820},{"type":54,"tag":273,"props":8284,"children":8285},{"style":330},[8286],{"type":59,"value":1315},{"type":54,"tag":273,"props":8288,"children":8289},{"style":3187},[8290],{"type":59,"value":3190},{"type":54,"tag":273,"props":8292,"children":8293},{"style":330},[8294],{"type":59,"value":924},{"type":54,"tag":273,"props":8296,"children":8297},{"style":280},[8298],{"type":59,"value":8081},{"type":54,"tag":273,"props":8300,"children":8301},{"style":330},[8302],{"type":59,"value":857},{"type":54,"tag":273,"props":8304,"children":8305},{"style":380},[8306],{"type":59,"value":2534},{"type":54,"tag":273,"props":8308,"children":8309},{"style":330},[8310],{"type":59,"value":779},{"type":54,"tag":273,"props":8312,"children":8313},{"class":275,"line":913},[8314,8318,8322,8326,8330,8334,8339,8343,8347,8351,8355],{"type":54,"tag":273,"props":8315,"children":8316},{"style":319},[8317],{"type":59,"value":1262},{"type":54,"tag":273,"props":8319,"children":8320},{"style":330},[8321],{"type":59,"value":730},{"type":54,"tag":273,"props":8323,"children":8324},{"style":733},[8325],{"type":59,"value":1271},{"type":54,"tag":273,"props":8327,"children":8328},{"style":374},[8329],{"type":59,"value":839},{"type":54,"tag":273,"props":8331,"children":8332},{"style":330},[8333],{"type":59,"value":343},{"type":54,"tag":273,"props":8335,"children":8336},{"style":285},[8337],{"type":59,"value":8338},"Users joined:",{"type":54,"tag":273,"props":8340,"children":8341},{"style":330},[8342],{"type":59,"value":343},{"type":54,"tag":273,"props":8344,"children":8345},{"style":330},[8346],{"type":59,"value":1202},{"type":54,"tag":273,"props":8348,"children":8349},{"style":319},[8350],{"type":59,"value":3252},{"type":54,"tag":273,"props":8352,"children":8353},{"style":374},[8354],{"type":59,"value":857},{"type":54,"tag":273,"props":8356,"children":8357},{"style":330},[8358],{"type":59,"value":348},{"type":54,"tag":273,"props":8360,"children":8361},{"class":275,"line":936},[8362],{"type":54,"tag":273,"props":8363,"children":8364},{"style":330},[8365],{"type":59,"value":8259},{"type":54,"tag":273,"props":8367,"children":8368},{"class":275,"line":966},[8369],{"type":54,"tag":273,"props":8370,"children":8371},{"emptyLinePlaceholder":691},[8372],{"type":59,"value":694},{"type":54,"tag":273,"props":8374,"children":8375},{"class":275,"line":989},[8376,8381,8385,8389,8393,8397,8401,8405,8409,8413,8417,8421,8425],{"type":54,"tag":273,"props":8377,"children":8378},{"style":319},[8379],{"type":59,"value":8380},"  clientRef",{"type":54,"tag":273,"props":8382,"children":8383},{"style":330},[8384],{"type":59,"value":730},{"type":54,"tag":273,"props":8386,"children":8387},{"style":319},[8388],{"type":59,"value":6906},{"type":54,"tag":273,"props":8390,"children":8391},{"style":330},[8392],{"type":59,"value":730},{"type":54,"tag":273,"props":8394,"children":8395},{"style":733},[8396],{"type":59,"value":3042},{"type":54,"tag":273,"props":8398,"children":8399},{"style":374},[8400],{"type":59,"value":839},{"type":54,"tag":273,"props":8402,"children":8403},{"style":330},[8404],{"type":59,"value":343},{"type":54,"tag":273,"props":8406,"children":8407},{"style":285},[8408],{"type":59,"value":3172},{"type":54,"tag":273,"props":8410,"children":8411},{"style":330},[8412],{"type":59,"value":343},{"type":54,"tag":273,"props":8414,"children":8415},{"style":330},[8416],{"type":59,"value":1202},{"type":54,"tag":273,"props":8418,"children":8419},{"style":319},[8420],{"type":59,"value":8060},{"type":54,"tag":273,"props":8422,"children":8423},{"style":374},[8424],{"type":59,"value":857},{"type":54,"tag":273,"props":8426,"children":8427},{"style":330},[8428],{"type":59,"value":348},{"type":54,"tag":273,"props":8430,"children":8431},{"class":275,"line":1010},[8432,8436,8440,8444,8448,8452,8456,8460,8464,8468,8472,8476,8480],{"type":54,"tag":273,"props":8433,"children":8434},{"style":319},[8435],{"type":59,"value":8380},{"type":54,"tag":273,"props":8437,"children":8438},{"style":330},[8439],{"type":59,"value":730},{"type":54,"tag":273,"props":8441,"children":8442},{"style":319},[8443],{"type":59,"value":6906},{"type":54,"tag":273,"props":8445,"children":8446},{"style":330},[8447],{"type":59,"value":730},{"type":54,"tag":273,"props":8449,"children":8450},{"style":733},[8451],{"type":59,"value":3042},{"type":54,"tag":273,"props":8453,"children":8454},{"style":374},[8455],{"type":59,"value":839},{"type":54,"tag":273,"props":8457,"children":8458},{"style":330},[8459],{"type":59,"value":343},{"type":54,"tag":273,"props":8461,"children":8462},{"style":285},[8463],{"type":59,"value":3447},{"type":54,"tag":273,"props":8465,"children":8466},{"style":330},[8467],{"type":59,"value":343},{"type":54,"tag":273,"props":8469,"children":8470},{"style":330},[8471],{"type":59,"value":1202},{"type":54,"tag":273,"props":8473,"children":8474},{"style":319},[8475],{"type":59,"value":8278},{"type":54,"tag":273,"props":8477,"children":8478},{"style":374},[8479],{"type":59,"value":857},{"type":54,"tag":273,"props":8481,"children":8482},{"style":330},[8483],{"type":59,"value":348},{"type":54,"tag":273,"props":8485,"children":8486},{"class":275,"line":1031},[8487],{"type":54,"tag":273,"props":8488,"children":8489},{"emptyLinePlaceholder":691},[8490],{"type":59,"value":694},{"type":54,"tag":273,"props":8492,"children":8493},{"class":275,"line":1048},[8494,8498,8502,8506],{"type":54,"tag":273,"props":8495,"children":8496},{"style":313},[8497],{"type":59,"value":7636},{"type":54,"tag":273,"props":8499,"children":8500},{"style":330},[8501],{"type":59,"value":2529},{"type":54,"tag":273,"props":8503,"children":8504},{"style":380},[8505],{"type":59,"value":2534},{"type":54,"tag":273,"props":8507,"children":8508},{"style":330},[8509],{"type":59,"value":779},{"type":54,"tag":273,"props":8511,"children":8512},{"class":275,"line":1056},[8513,8518,8522,8526,8531,8535,8539,8543,8547,8551,8555,8559,8563],{"type":54,"tag":273,"props":8514,"children":8515},{"style":319},[8516],{"type":59,"value":8517},"    clientRef",{"type":54,"tag":273,"props":8519,"children":8520},{"style":330},[8521],{"type":59,"value":730},{"type":54,"tag":273,"props":8523,"children":8524},{"style":319},[8525],{"type":59,"value":6906},{"type":54,"tag":273,"props":8527,"children":8528},{"style":330},[8529],{"type":59,"value":8530},"?.",{"type":54,"tag":273,"props":8532,"children":8533},{"style":733},[8534],{"type":59,"value":3103},{"type":54,"tag":273,"props":8536,"children":8537},{"style":374},[8538],{"type":59,"value":839},{"type":54,"tag":273,"props":8540,"children":8541},{"style":330},[8542],{"type":59,"value":343},{"type":54,"tag":273,"props":8544,"children":8545},{"style":285},[8546],{"type":59,"value":3172},{"type":54,"tag":273,"props":8548,"children":8549},{"style":330},[8550],{"type":59,"value":343},{"type":54,"tag":273,"props":8552,"children":8553},{"style":330},[8554],{"type":59,"value":1202},{"type":54,"tag":273,"props":8556,"children":8557},{"style":319},[8558],{"type":59,"value":8060},{"type":54,"tag":273,"props":8560,"children":8561},{"style":374},[8562],{"type":59,"value":857},{"type":54,"tag":273,"props":8564,"children":8565},{"style":330},[8566],{"type":59,"value":348},{"type":54,"tag":273,"props":8568,"children":8569},{"class":275,"line":1065},[8570,8574,8578,8582,8586,8590,8594,8598,8602,8606,8610,8614,8618],{"type":54,"tag":273,"props":8571,"children":8572},{"style":319},[8573],{"type":59,"value":8517},{"type":54,"tag":273,"props":8575,"children":8576},{"style":330},[8577],{"type":59,"value":730},{"type":54,"tag":273,"props":8579,"children":8580},{"style":319},[8581],{"type":59,"value":6906},{"type":54,"tag":273,"props":8583,"children":8584},{"style":330},[8585],{"type":59,"value":8530},{"type":54,"tag":273,"props":8587,"children":8588},{"style":733},[8589],{"type":59,"value":3103},{"type":54,"tag":273,"props":8591,"children":8592},{"style":374},[8593],{"type":59,"value":839},{"type":54,"tag":273,"props":8595,"children":8596},{"style":330},[8597],{"type":59,"value":343},{"type":54,"tag":273,"props":8599,"children":8600},{"style":285},[8601],{"type":59,"value":3447},{"type":54,"tag":273,"props":8603,"children":8604},{"style":330},[8605],{"type":59,"value":343},{"type":54,"tag":273,"props":8607,"children":8608},{"style":330},[8609],{"type":59,"value":1202},{"type":54,"tag":273,"props":8611,"children":8612},{"style":319},[8613],{"type":59,"value":8278},{"type":54,"tag":273,"props":8615,"children":8616},{"style":374},[8617],{"type":59,"value":857},{"type":54,"tag":273,"props":8619,"children":8620},{"style":330},[8621],{"type":59,"value":348},{"type":54,"tag":273,"props":8623,"children":8624},{"class":275,"line":1094},[8625],{"type":54,"tag":273,"props":8626,"children":8627},{"style":330},[8628],{"type":59,"value":8259},{"type":54,"tag":273,"props":8630,"children":8631},{"class":275,"line":1116},[8632,8637,8641],{"type":54,"tag":273,"props":8633,"children":8634},{"style":330},[8635],{"type":59,"value":8636},"},",{"type":54,"tag":273,"props":8638,"children":8639},{"style":319},[8640],{"type":59,"value":6974},{"type":54,"tag":273,"props":8642,"children":8643},{"style":330},[8644],{"type":59,"value":348},{"type":54,"tag":81,"props":8646,"children":8648},{"id":8647},"positioning-and-resizing",[8649],{"type":59,"value":8650},"Positioning and Resizing",{"type":54,"tag":255,"props":8652,"children":8654},{"id":8653},"initial-size",[8655],{"type":59,"value":8656},"Initial Size",{"type":54,"tag":262,"props":8658,"children":8660},{"className":301,"code":8659,"language":303,"meta":267,"style":267},"await client.init({\n  zoomAppRoot: element,\n  customize: {\n    video: {\n      viewSizes: {\n        default: { width: 1000, height: 600 }\n      }\n    }\n  }\n});\n",[8661],{"type":54,"tag":93,"props":8662,"children":8663},{"__ignoreMap":267},[8664,8691,8710,8725,8740,8755,8804,8811,8818,8825],{"type":54,"tag":273,"props":8665,"children":8666},{"class":275,"line":276},[8667,8671,8675,8679,8683,8687],{"type":54,"tag":273,"props":8668,"children":8669},{"style":313},[8670],{"type":59,"value":1867},{"type":54,"tag":273,"props":8672,"children":8673},{"style":319},[8674],{"type":59,"value":892},{"type":54,"tag":273,"props":8676,"children":8677},{"style":330},[8678],{"type":59,"value":730},{"type":54,"tag":273,"props":8680,"children":8681},{"style":733},[8682],{"type":59,"value":901},{"type":54,"tag":273,"props":8684,"children":8685},{"style":319},[8686],{"type":59,"value":839},{"type":54,"tag":273,"props":8688,"children":8689},{"style":330},[8690],{"type":59,"value":910},{"type":54,"tag":273,"props":8692,"children":8693},{"class":275,"line":419},[8694,8698,8702,8706],{"type":54,"tag":273,"props":8695,"children":8696},{"style":374},[8697],{"type":59,"value":1895},{"type":54,"tag":273,"props":8699,"children":8700},{"style":330},[8701],{"type":59,"value":924},{"type":54,"tag":273,"props":8703,"children":8704},{"style":319},[8705],{"type":59,"value":1904},{"type":54,"tag":273,"props":8707,"children":8708},{"style":330},[8709],{"type":59,"value":933},{"type":54,"tag":273,"props":8711,"children":8712},{"class":275,"line":464},[8713,8717,8721],{"type":54,"tag":273,"props":8714,"children":8715},{"style":374},[8716],{"type":59,"value":1916},{"type":54,"tag":273,"props":8718,"children":8719},{"style":330},[8720],{"type":59,"value":924},{"type":54,"tag":273,"props":8722,"children":8723},{"style":330},[8724],{"type":59,"value":779},{"type":54,"tag":273,"props":8726,"children":8727},{"class":275,"line":509},[8728,8732,8736],{"type":54,"tag":273,"props":8729,"children":8730},{"style":374},[8731],{"type":59,"value":2168},{"type":54,"tag":273,"props":8733,"children":8734},{"style":330},[8735],{"type":59,"value":924},{"type":54,"tag":273,"props":8737,"children":8738},{"style":330},[8739],{"type":59,"value":779},{"type":54,"tag":273,"props":8741,"children":8742},{"class":275,"line":554},[8743,8747,8751],{"type":54,"tag":273,"props":8744,"children":8745},{"style":374},[8746],{"type":59,"value":2204},{"type":54,"tag":273,"props":8748,"children":8749},{"style":330},[8750],{"type":59,"value":924},{"type":54,"tag":273,"props":8752,"children":8753},{"style":330},[8754],{"type":59,"value":779},{"type":54,"tag":273,"props":8756,"children":8757},{"class":275,"line":599},[8758,8762,8766,8770,8774,8778,8782,8786,8790,8794,8799],{"type":54,"tag":273,"props":8759,"children":8760},{"style":374},[8761],{"type":59,"value":2220},{"type":54,"tag":273,"props":8763,"children":8764},{"style":330},[8765],{"type":59,"value":924},{"type":54,"tag":273,"props":8767,"children":8768},{"style":330},[8769],{"type":59,"value":6395},{"type":54,"tag":273,"props":8771,"children":8772},{"style":374},[8773],{"type":59,"value":7714},{"type":54,"tag":273,"props":8775,"children":8776},{"style":330},[8777],{"type":59,"value":924},{"type":54,"tag":273,"props":8779,"children":8780},{"style":2243},[8781],{"type":59,"value":2246},{"type":54,"tag":273,"props":8783,"children":8784},{"style":330},[8785],{"type":59,"value":1202},{"type":54,"tag":273,"props":8787,"children":8788},{"style":374},[8789],{"type":59,"value":7740},{"type":54,"tag":273,"props":8791,"children":8792},{"style":330},[8793],{"type":59,"value":924},{"type":54,"tag":273,"props":8795,"children":8796},{"style":2243},[8797],{"type":59,"value":8798}," 600",{"type":54,"tag":273,"props":8800,"children":8801},{"style":330},[8802],{"type":59,"value":8803}," }\n",{"type":54,"tag":273,"props":8805,"children":8806},{"class":275,"line":782},[8807],{"type":54,"tag":273,"props":8808,"children":8809},{"style":330},[8810],{"type":59,"value":2384},{"type":54,"tag":273,"props":8812,"children":8813},{"class":275,"line":795},[8814],{"type":54,"tag":273,"props":8815,"children":8816},{"style":330},[8817],{"type":59,"value":2683},{"type":54,"tag":273,"props":8819,"children":8820},{"class":275,"line":804},[8821],{"type":54,"tag":273,"props":8822,"children":8823},{"style":330},[8824],{"type":59,"value":1388},{"type":54,"tag":273,"props":8826,"children":8827},{"class":275,"line":864},[8828,8832,8836],{"type":54,"tag":273,"props":8829,"children":8830},{"style":330},[8831],{"type":59,"value":2700},{"type":54,"tag":273,"props":8833,"children":8834},{"style":319},[8835],{"type":59,"value":857},{"type":54,"tag":273,"props":8837,"children":8838},{"style":330},[8839],{"type":59,"value":348},{"type":54,"tag":255,"props":8841,"children":8843},{"id":8842},"dynamic-resizing",[8844],{"type":59,"value":8845},"Dynamic Resizing",{"type":54,"tag":62,"props":8847,"children":8848},{},[8849],{"type":59,"value":8850},"The container element size determines the meeting UI size. To resize:",{"type":54,"tag":262,"props":8852,"children":8854},{"className":301,"code":8853,"language":303,"meta":267,"style":267},"\u002F\u002F Just resize the container\ndocument.getElementById('meetingSDKElement').style.width = '1200px';\ndocument.getElementById('meetingSDKElement').style.height = '800px';\n",[8855],{"type":54,"tag":93,"props":8856,"children":8857},{"__ignoreMap":267},[8858,8866,8941],{"type":54,"tag":273,"props":8859,"children":8860},{"class":275,"line":276},[8861],{"type":54,"tag":273,"props":8862,"children":8863},{"style":700},[8864],{"type":59,"value":8865},"\u002F\u002F Just resize the container\n",{"type":54,"tag":273,"props":8867,"children":8868},{"class":275,"line":419},[8869,8874,8878,8882,8886,8890,8894,8898,8902,8906,8911,8915,8920,8924,8928,8933,8937],{"type":54,"tag":273,"props":8870,"children":8871},{"style":319},[8872],{"type":59,"value":8873},"document",{"type":54,"tag":273,"props":8875,"children":8876},{"style":330},[8877],{"type":59,"value":730},{"type":54,"tag":273,"props":8879,"children":8880},{"style":733},[8881],{"type":59,"value":834},{"type":54,"tag":273,"props":8883,"children":8884},{"style":319},[8885],{"type":59,"value":839},{"type":54,"tag":273,"props":8887,"children":8888},{"style":330},[8889],{"type":59,"value":343},{"type":54,"tag":273,"props":8891,"children":8892},{"style":285},[8893],{"type":59,"value":848},{"type":54,"tag":273,"props":8895,"children":8896},{"style":330},[8897],{"type":59,"value":343},{"type":54,"tag":273,"props":8899,"children":8900},{"style":319},[8901],{"type":59,"value":857},{"type":54,"tag":273,"props":8903,"children":8904},{"style":330},[8905],{"type":59,"value":730},{"type":54,"tag":273,"props":8907,"children":8908},{"style":319},[8909],{"type":59,"value":8910},"style",{"type":54,"tag":273,"props":8912,"children":8913},{"style":330},[8914],{"type":59,"value":730},{"type":54,"tag":273,"props":8916,"children":8917},{"style":319},[8918],{"type":59,"value":8919},"width ",{"type":54,"tag":273,"props":8921,"children":8922},{"style":330},[8923],{"type":59,"value":388},{"type":54,"tag":273,"props":8925,"children":8926},{"style":330},[8927],{"type":59,"value":333},{"type":54,"tag":273,"props":8929,"children":8930},{"style":285},[8931],{"type":59,"value":8932},"1200px",{"type":54,"tag":273,"props":8934,"children":8935},{"style":330},[8936],{"type":59,"value":343},{"type":54,"tag":273,"props":8938,"children":8939},{"style":330},[8940],{"type":59,"value":348},{"type":54,"tag":273,"props":8942,"children":8943},{"class":275,"line":464},[8944,8948,8952,8956,8960,8964,8968,8972,8976,8980,8984,8988,8993,8997,9001,9006,9010],{"type":54,"tag":273,"props":8945,"children":8946},{"style":319},[8947],{"type":59,"value":8873},{"type":54,"tag":273,"props":8949,"children":8950},{"style":330},[8951],{"type":59,"value":730},{"type":54,"tag":273,"props":8953,"children":8954},{"style":733},[8955],{"type":59,"value":834},{"type":54,"tag":273,"props":8957,"children":8958},{"style":319},[8959],{"type":59,"value":839},{"type":54,"tag":273,"props":8961,"children":8962},{"style":330},[8963],{"type":59,"value":343},{"type":54,"tag":273,"props":8965,"children":8966},{"style":285},[8967],{"type":59,"value":848},{"type":54,"tag":273,"props":8969,"children":8970},{"style":330},[8971],{"type":59,"value":343},{"type":54,"tag":273,"props":8973,"children":8974},{"style":319},[8975],{"type":59,"value":857},{"type":54,"tag":273,"props":8977,"children":8978},{"style":330},[8979],{"type":59,"value":730},{"type":54,"tag":273,"props":8981,"children":8982},{"style":319},[8983],{"type":59,"value":8910},{"type":54,"tag":273,"props":8985,"children":8986},{"style":330},[8987],{"type":59,"value":730},{"type":54,"tag":273,"props":8989,"children":8990},{"style":319},[8991],{"type":59,"value":8992},"height ",{"type":54,"tag":273,"props":8994,"children":8995},{"style":330},[8996],{"type":59,"value":388},{"type":54,"tag":273,"props":8998,"children":8999},{"style":330},[9000],{"type":59,"value":333},{"type":54,"tag":273,"props":9002,"children":9003},{"style":285},[9004],{"type":59,"value":9005},"800px",{"type":54,"tag":273,"props":9007,"children":9008},{"style":330},[9009],{"type":59,"value":343},{"type":54,"tag":273,"props":9011,"children":9012},{"style":330},[9013],{"type":59,"value":348},{"type":54,"tag":255,"props":9015,"children":9017},{"id":9016},"making-it-resizable",[9018],{"type":59,"value":9019},"Making it Resizable",{"type":54,"tag":262,"props":9021,"children":9023},{"className":301,"code":9022,"language":303,"meta":267,"style":267},"customize: {\n  video: {\n    isResizable: true\n  }\n}\n",[9024],{"type":54,"tag":93,"props":9025,"children":9026},{"__ignoreMap":267},[9027,9042,9058,9075,9082],{"type":54,"tag":273,"props":9028,"children":9029},{"class":275,"line":276},[9030,9034,9038],{"type":54,"tag":273,"props":9031,"children":9032},{"style":280},[9033],{"type":59,"value":1776},{"type":54,"tag":273,"props":9035,"children":9036},{"style":330},[9037],{"type":59,"value":924},{"type":54,"tag":273,"props":9039,"children":9040},{"style":330},[9041],{"type":59,"value":779},{"type":54,"tag":273,"props":9043,"children":9044},{"class":275,"line":419},[9045,9050,9054],{"type":54,"tag":273,"props":9046,"children":9047},{"style":280},[9048],{"type":59,"value":9049},"  video",{"type":54,"tag":273,"props":9051,"children":9052},{"style":330},[9053],{"type":59,"value":924},{"type":54,"tag":273,"props":9055,"children":9056},{"style":330},[9057],{"type":59,"value":779},{"type":54,"tag":273,"props":9059,"children":9060},{"class":275,"line":464},[9061,9066,9070],{"type":54,"tag":273,"props":9062,"children":9063},{"style":280},[9064],{"type":59,"value":9065},"    isResizable",{"type":54,"tag":273,"props":9067,"children":9068},{"style":330},[9069],{"type":59,"value":924},{"type":54,"tag":273,"props":9071,"children":9072},{"style":979},[9073],{"type":59,"value":9074}," true\n",{"type":54,"tag":273,"props":9076,"children":9077},{"class":275,"line":509},[9078],{"type":54,"tag":273,"props":9079,"children":9080},{"style":330},[9081],{"type":59,"value":1388},{"type":54,"tag":273,"props":9083,"children":9084},{"class":275,"line":554},[9085],{"type":54,"tag":273,"props":9086,"children":9087},{"style":330},[9088],{"type":59,"value":1397},{"type":54,"tag":81,"props":9090,"children":9092},{"id":9091},"supported-features",[9093],{"type":59,"value":9094},"Supported Features",{"type":54,"tag":62,"props":9096,"children":9097},{},[9098],{"type":59,"value":9099},"Component View supports core meeting functionality. Some features from Client View may not be available.",{"type":54,"tag":102,"props":9101,"children":9102},{},[9103,9119],{"type":54,"tag":106,"props":9104,"children":9105},{},[9106],{"type":54,"tag":110,"props":9107,"children":9108},{},[9109,9114],{"type":54,"tag":114,"props":9110,"children":9111},{},[9112],{"type":59,"value":9113},"Feature",{"type":54,"tag":114,"props":9115,"children":9116},{},[9117],{"type":59,"value":9118},"Supported",{"type":54,"tag":125,"props":9120,"children":9121},{},[9122,9135,9146,9158,9169,9181,9193,9205,9217,9229,9241,9253],{"type":54,"tag":110,"props":9123,"children":9124},{},[9125,9130],{"type":54,"tag":132,"props":9126,"children":9127},{},[9128],{"type":59,"value":9129},"Audio\u002FVideo",{"type":54,"tag":132,"props":9131,"children":9132},{},[9133],{"type":59,"value":9134},"✅",{"type":54,"tag":110,"props":9136,"children":9137},{},[9138,9142],{"type":54,"tag":132,"props":9139,"children":9140},{},[9141],{"type":59,"value":5965},{"type":54,"tag":132,"props":9143,"children":9144},{},[9145],{"type":59,"value":9134},{"type":54,"tag":110,"props":9147,"children":9148},{},[9149,9154],{"type":54,"tag":132,"props":9150,"children":9151},{},[9152],{"type":59,"value":9153},"Chat",{"type":54,"tag":132,"props":9155,"children":9156},{},[9157],{"type":59,"value":9134},{"type":54,"tag":110,"props":9159,"children":9160},{},[9161,9165],{"type":54,"tag":132,"props":9162,"children":9163},{},[9164],{"type":59,"value":6149},{"type":54,"tag":132,"props":9166,"children":9167},{},[9168],{"type":59,"value":9134},{"type":54,"tag":110,"props":9170,"children":9171},{},[9172,9177],{"type":54,"tag":132,"props":9173,"children":9174},{},[9175],{"type":59,"value":9176},"Breakout Rooms",{"type":54,"tag":132,"props":9178,"children":9179},{},[9180],{"type":59,"value":9134},{"type":54,"tag":110,"props":9182,"children":9183},{},[9184,9189],{"type":54,"tag":132,"props":9185,"children":9186},{},[9187],{"type":59,"value":9188},"Cloud Recording",{"type":54,"tag":132,"props":9190,"children":9191},{},[9192],{"type":59,"value":9134},{"type":54,"tag":110,"props":9194,"children":9195},{},[9196,9201],{"type":54,"tag":132,"props":9197,"children":9198},{},[9199],{"type":59,"value":9200},"Closed Captions",{"type":54,"tag":132,"props":9202,"children":9203},{},[9204],{"type":59,"value":9134},{"type":54,"tag":110,"props":9206,"children":9207},{},[9208,9213],{"type":54,"tag":132,"props":9209,"children":9210},{},[9211],{"type":59,"value":9212},"Live Transcription",{"type":54,"tag":132,"props":9214,"children":9215},{},[9216],{"type":59,"value":9134},{"type":54,"tag":110,"props":9218,"children":9219},{},[9220,9225],{"type":54,"tag":132,"props":9221,"children":9222},{},[9223],{"type":59,"value":9224},"Waiting Room",{"type":54,"tag":132,"props":9226,"children":9227},{},[9228],{"type":59,"value":9134},{"type":54,"tag":110,"props":9230,"children":9231},{},[9232,9237],{"type":54,"tag":132,"props":9233,"children":9234},{},[9235],{"type":59,"value":9236},"Gallery View",{"type":54,"tag":132,"props":9238,"children":9239},{},[9240],{"type":59,"value":9134},{"type":54,"tag":110,"props":9242,"children":9243},{},[9244,9249],{"type":54,"tag":132,"props":9245,"children":9246},{},[9247],{"type":59,"value":9248},"Reactions",{"type":54,"tag":132,"props":9250,"children":9251},{},[9252],{"type":59,"value":9134},{"type":54,"tag":110,"props":9254,"children":9255},{},[9256,9261],{"type":54,"tag":132,"props":9257,"children":9258},{},[9259],{"type":59,"value":9260},"Raise Hand",{"type":54,"tag":132,"props":9262,"children":9263},{},[9264],{"type":59,"value":9134},{"type":54,"tag":62,"props":9266,"children":9267},{},[9268],{"type":59,"value":9269},"Contact Zoom Developer Support to request additional features.",{"type":54,"tag":81,"props":9271,"children":9273},{"id":9272},"error-handling",[9274],{"type":59,"value":9275},"Error Handling",{"type":54,"tag":262,"props":9277,"children":9279},{"className":301,"code":9278,"language":303,"meta":267,"style":267},"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",[9280],{"type":54,"tag":93,"props":9281,"children":9282},{"__ignoreMap":267},[9283,9295,9323,9331,9346,9366,9374,9382,9389,9421,9447,9488,9500,9524,9564,9575,9599,9639,9650,9662,9718,9725],{"type":54,"tag":273,"props":9284,"children":9285},{"class":275,"line":276},[9286,9291],{"type":54,"tag":273,"props":9287,"children":9288},{"style":313},[9289],{"type":59,"value":9290},"try",{"type":54,"tag":273,"props":9292,"children":9293},{"style":330},[9294],{"type":59,"value":779},{"type":54,"tag":273,"props":9296,"children":9297},{"class":275,"line":419},[9298,9303,9307,9311,9315,9319],{"type":54,"tag":273,"props":9299,"children":9300},{"style":313},[9301],{"type":59,"value":9302},"  await",{"type":54,"tag":273,"props":9304,"children":9305},{"style":319},[9306],{"type":59,"value":892},{"type":54,"tag":273,"props":9308,"children":9309},{"style":330},[9310],{"type":59,"value":730},{"type":54,"tag":273,"props":9312,"children":9313},{"style":733},[9314],{"type":59,"value":1083},{"type":54,"tag":273,"props":9316,"children":9317},{"style":374},[9318],{"type":59,"value":839},{"type":54,"tag":273,"props":9320,"children":9321},{"style":330},[9322],{"type":59,"value":910},{"type":54,"tag":273,"props":9324,"children":9325},{"class":275,"line":464},[9326],{"type":54,"tag":273,"props":9327,"children":9328},{"style":700},[9329],{"type":59,"value":9330},"    \u002F\u002F ... options\n",{"type":54,"tag":273,"props":9332,"children":9333},{"class":275,"line":509},[9334,9338,9342],{"type":54,"tag":273,"props":9335,"children":9336},{"style":330},[9337],{"type":59,"value":1305},{"type":54,"tag":273,"props":9339,"children":9340},{"style":374},[9341],{"type":59,"value":857},{"type":54,"tag":273,"props":9343,"children":9344},{"style":330},[9345],{"type":59,"value":348},{"type":54,"tag":273,"props":9347,"children":9348},{"class":275,"line":554},[9349,9353,9357,9362],{"type":54,"tag":273,"props":9350,"children":9351},{"style":330},[9352],{"type":59,"value":2700},{"type":54,"tag":273,"props":9354,"children":9355},{"style":313},[9356],{"type":59,"value":1310},{"type":54,"tag":273,"props":9358,"children":9359},{"style":319},[9360],{"type":59,"value":9361}," (error) ",{"type":54,"tag":273,"props":9363,"children":9364},{"style":330},[9365],{"type":59,"value":910},{"type":54,"tag":273,"props":9367,"children":9368},{"class":275,"line":599},[9369],{"type":54,"tag":273,"props":9370,"children":9371},{"style":700},[9372],{"type":59,"value":9373},"  \u002F\u002F error.reason contains error code\n",{"type":54,"tag":273,"props":9375,"children":9376},{"class":275,"line":782},[9377],{"type":54,"tag":273,"props":9378,"children":9379},{"style":700},[9380],{"type":59,"value":9381},"  \u002F\u002F error.message contains description\n",{"type":54,"tag":273,"props":9383,"children":9384},{"class":275,"line":795},[9385],{"type":54,"tag":273,"props":9386,"children":9387},{"style":374},[9388],{"type":59,"value":3277},{"type":54,"tag":273,"props":9390,"children":9391},{"class":275,"line":804},[9392,9397,9401,9405,9409,9413,9417],{"type":54,"tag":273,"props":9393,"children":9394},{"style":313},[9395],{"type":59,"value":9396},"  switch",{"type":54,"tag":273,"props":9398,"children":9399},{"style":374},[9400],{"type":59,"value":1315},{"type":54,"tag":273,"props":9402,"children":9403},{"style":319},[9404],{"type":59,"value":1320},{"type":54,"tag":273,"props":9406,"children":9407},{"style":330},[9408],{"type":59,"value":730},{"type":54,"tag":273,"props":9410,"children":9411},{"style":319},[9412],{"type":59,"value":3376},{"type":54,"tag":273,"props":9414,"children":9415},{"style":374},[9416],{"type":59,"value":1325},{"type":54,"tag":273,"props":9418,"children":9419},{"style":330},[9420],{"type":59,"value":910},{"type":54,"tag":273,"props":9422,"children":9423},{"class":275,"line":864},[9424,9429,9433,9438,9442],{"type":54,"tag":273,"props":9425,"children":9426},{"style":313},[9427],{"type":59,"value":9428},"    case",{"type":54,"tag":273,"props":9430,"children":9431},{"style":330},[9432],{"type":59,"value":333},{"type":54,"tag":273,"props":9434,"children":9435},{"style":285},[9436],{"type":59,"value":9437},"WRONG_MEETING_PASSWORD",{"type":54,"tag":273,"props":9439,"children":9440},{"style":330},[9441],{"type":59,"value":343},{"type":54,"tag":273,"props":9443,"children":9444},{"style":330},[9445],{"type":59,"value":9446},":\n",{"type":54,"tag":273,"props":9448,"children":9449},{"class":275,"line":872},[9450,9455,9459,9463,9467,9471,9476,9480,9484],{"type":54,"tag":273,"props":9451,"children":9452},{"style":319},[9453],{"type":59,"value":9454},"      console",{"type":54,"tag":273,"props":9456,"children":9457},{"style":330},[9458],{"type":59,"value":730},{"type":54,"tag":273,"props":9460,"children":9461},{"style":733},[9462],{"type":59,"value":1320},{"type":54,"tag":273,"props":9464,"children":9465},{"style":374},[9466],{"type":59,"value":839},{"type":54,"tag":273,"props":9468,"children":9469},{"style":330},[9470],{"type":59,"value":343},{"type":54,"tag":273,"props":9472,"children":9473},{"style":285},[9474],{"type":59,"value":9475},"Incorrect password",{"type":54,"tag":273,"props":9477,"children":9478},{"style":330},[9479],{"type":59,"value":343},{"type":54,"tag":273,"props":9481,"children":9482},{"style":374},[9483],{"type":59,"value":857},{"type":54,"tag":273,"props":9485,"children":9486},{"style":330},[9487],{"type":59,"value":348},{"type":54,"tag":273,"props":9489,"children":9490},{"class":275,"line":881},[9491,9496],{"type":54,"tag":273,"props":9492,"children":9493},{"style":313},[9494],{"type":59,"value":9495},"      break",{"type":54,"tag":273,"props":9497,"children":9498},{"style":330},[9499],{"type":59,"value":348},{"type":54,"tag":273,"props":9501,"children":9502},{"class":275,"line":913},[9503,9507,9511,9516,9520],{"type":54,"tag":273,"props":9504,"children":9505},{"style":313},[9506],{"type":59,"value":9428},{"type":54,"tag":273,"props":9508,"children":9509},{"style":330},[9510],{"type":59,"value":333},{"type":54,"tag":273,"props":9512,"children":9513},{"style":285},[9514],{"type":59,"value":9515},"MEETING_NOT_START",{"type":54,"tag":273,"props":9517,"children":9518},{"style":330},[9519],{"type":59,"value":343},{"type":54,"tag":273,"props":9521,"children":9522},{"style":330},[9523],{"type":59,"value":9446},{"type":54,"tag":273,"props":9525,"children":9526},{"class":275,"line":936},[9527,9531,9535,9539,9543,9547,9552,9556,9560],{"type":54,"tag":273,"props":9528,"children":9529},{"style":319},[9530],{"type":59,"value":9454},{"type":54,"tag":273,"props":9532,"children":9533},{"style":330},[9534],{"type":59,"value":730},{"type":54,"tag":273,"props":9536,"children":9537},{"style":733},[9538],{"type":59,"value":1320},{"type":54,"tag":273,"props":9540,"children":9541},{"style":374},[9542],{"type":59,"value":839},{"type":54,"tag":273,"props":9544,"children":9545},{"style":330},[9546],{"type":59,"value":343},{"type":54,"tag":273,"props":9548,"children":9549},{"style":285},[9550],{"type":59,"value":9551},"Meeting has not started",{"type":54,"tag":273,"props":9553,"children":9554},{"style":330},[9555],{"type":59,"value":343},{"type":54,"tag":273,"props":9557,"children":9558},{"style":374},[9559],{"type":59,"value":857},{"type":54,"tag":273,"props":9561,"children":9562},{"style":330},[9563],{"type":59,"value":348},{"type":54,"tag":273,"props":9565,"children":9566},{"class":275,"line":966},[9567,9571],{"type":54,"tag":273,"props":9568,"children":9569},{"style":313},[9570],{"type":59,"value":9495},{"type":54,"tag":273,"props":9572,"children":9573},{"style":330},[9574],{"type":59,"value":348},{"type":54,"tag":273,"props":9576,"children":9577},{"class":275,"line":989},[9578,9582,9586,9591,9595],{"type":54,"tag":273,"props":9579,"children":9580},{"style":313},[9581],{"type":59,"value":9428},{"type":54,"tag":273,"props":9583,"children":9584},{"style":330},[9585],{"type":59,"value":333},{"type":54,"tag":273,"props":9587,"children":9588},{"style":285},[9589],{"type":59,"value":9590},"INVALID_PARAMETERS",{"type":54,"tag":273,"props":9592,"children":9593},{"style":330},[9594],{"type":59,"value":343},{"type":54,"tag":273,"props":9596,"children":9597},{"style":330},[9598],{"type":59,"value":9446},{"type":54,"tag":273,"props":9600,"children":9601},{"class":275,"line":1010},[9602,9606,9610,9614,9618,9622,9627,9631,9635],{"type":54,"tag":273,"props":9603,"children":9604},{"style":319},[9605],{"type":59,"value":9454},{"type":54,"tag":273,"props":9607,"children":9608},{"style":330},[9609],{"type":59,"value":730},{"type":54,"tag":273,"props":9611,"children":9612},{"style":733},[9613],{"type":59,"value":1320},{"type":54,"tag":273,"props":9615,"children":9616},{"style":374},[9617],{"type":59,"value":839},{"type":54,"tag":273,"props":9619,"children":9620},{"style":330},[9621],{"type":59,"value":343},{"type":54,"tag":273,"props":9623,"children":9624},{"style":285},[9625],{"type":59,"value":9626},"Invalid join parameters",{"type":54,"tag":273,"props":9628,"children":9629},{"style":330},[9630],{"type":59,"value":343},{"type":54,"tag":273,"props":9632,"children":9633},{"style":374},[9634],{"type":59,"value":857},{"type":54,"tag":273,"props":9636,"children":9637},{"style":330},[9638],{"type":59,"value":348},{"type":54,"tag":273,"props":9640,"children":9641},{"class":275,"line":1031},[9642,9646],{"type":54,"tag":273,"props":9643,"children":9644},{"style":313},[9645],{"type":59,"value":9495},{"type":54,"tag":273,"props":9647,"children":9648},{"style":330},[9649],{"type":59,"value":348},{"type":54,"tag":273,"props":9651,"children":9652},{"class":275,"line":1048},[9653,9658],{"type":54,"tag":273,"props":9654,"children":9655},{"style":313},[9656],{"type":59,"value":9657},"    default",{"type":54,"tag":273,"props":9659,"children":9660},{"style":330},[9661],{"type":59,"value":9446},{"type":54,"tag":273,"props":9663,"children":9664},{"class":275,"line":1056},[9665,9669,9673,9677,9681,9685,9690,9694,9698,9702,9706,9710,9714],{"type":54,"tag":273,"props":9666,"children":9667},{"style":319},[9668],{"type":59,"value":9454},{"type":54,"tag":273,"props":9670,"children":9671},{"style":330},[9672],{"type":59,"value":730},{"type":54,"tag":273,"props":9674,"children":9675},{"style":733},[9676],{"type":59,"value":1320},{"type":54,"tag":273,"props":9678,"children":9679},{"style":374},[9680],{"type":59,"value":839},{"type":54,"tag":273,"props":9682,"children":9683},{"style":330},[9684],{"type":59,"value":343},{"type":54,"tag":273,"props":9686,"children":9687},{"style":285},[9688],{"type":59,"value":9689},"Join failed:",{"type":54,"tag":273,"props":9691,"children":9692},{"style":330},[9693],{"type":59,"value":343},{"type":54,"tag":273,"props":9695,"children":9696},{"style":330},[9697],{"type":59,"value":1202},{"type":54,"tag":273,"props":9699,"children":9700},{"style":319},[9701],{"type":59,"value":1371},{"type":54,"tag":273,"props":9703,"children":9704},{"style":330},[9705],{"type":59,"value":730},{"type":54,"tag":273,"props":9707,"children":9708},{"style":319},[9709],{"type":59,"value":7548},{"type":54,"tag":273,"props":9711,"children":9712},{"style":374},[9713],{"type":59,"value":857},{"type":54,"tag":273,"props":9715,"children":9716},{"style":330},[9717],{"type":59,"value":348},{"type":54,"tag":273,"props":9719,"children":9720},{"class":275,"line":1065},[9721],{"type":54,"tag":273,"props":9722,"children":9723},{"style":330},[9724],{"type":59,"value":1388},{"type":54,"tag":273,"props":9726,"children":9727},{"class":275,"line":1094},[9728],{"type":54,"tag":273,"props":9729,"children":9730},{"style":330},[9731],{"type":59,"value":1397},{"type":54,"tag":81,"props":9733,"children":9735},{"id":9734},"comparison-with-client-view",[9736],{"type":59,"value":9737},"Comparison with Client View",{"type":54,"tag":102,"props":9739,"children":9740},{},[9741,9761],{"type":54,"tag":106,"props":9742,"children":9743},{},[9744],{"type":54,"tag":110,"props":9745,"children":9746},{},[9747,9751,9756],{"type":54,"tag":114,"props":9748,"children":9749},{},[9750],{"type":59,"value":9113},{"type":54,"tag":114,"props":9752,"children":9753},{},[9754],{"type":59,"value":9755},"Component View",{"type":54,"tag":114,"props":9757,"children":9758},{},[9759],{"type":59,"value":9760},"Client View",{"type":54,"tag":125,"props":9762,"children":9763},{},[9764,9784,9811,9838,9858,9883,9908],{"type":54,"tag":110,"props":9765,"children":9766},{},[9767,9774,9779],{"type":54,"tag":132,"props":9768,"children":9769},{},[9770],{"type":54,"tag":73,"props":9771,"children":9772},{},[9773],{"type":59,"value":160},{"type":54,"tag":132,"props":9775,"children":9776},{},[9777],{"type":59,"value":9778},"Promises",{"type":54,"tag":132,"props":9780,"children":9781},{},[9782],{"type":59,"value":9783},"Callbacks",{"type":54,"tag":110,"props":9785,"children":9786},{},[9787,9794,9802],{"type":54,"tag":132,"props":9788,"children":9789},{},[9790],{"type":54,"tag":73,"props":9791,"children":9792},{},[9793],{"type":59,"value":192},{"type":54,"tag":132,"props":9795,"children":9796},{},[9797],{"type":54,"tag":93,"props":9798,"children":9800},{"className":9799},[],[9801],{"type":59,"value":201},{"type":54,"tag":132,"props":9803,"children":9804},{},[9805],{"type":54,"tag":93,"props":9806,"children":9808},{"className":9807},[],[9809],{"type":59,"value":9810},"passWord",{"type":54,"tag":110,"props":9812,"children":9813},{},[9814,9822,9827],{"type":54,"tag":132,"props":9815,"children":9816},{},[9817],{"type":54,"tag":73,"props":9818,"children":9819},{},[9820],{"type":59,"value":9821},"Container",{"type":54,"tag":132,"props":9823,"children":9824},{},[9825],{"type":59,"value":9826},"Custom element",{"type":54,"tag":132,"props":9828,"children":9829},{},[9830,9832],{"type":59,"value":9831},"Auto ",{"type":54,"tag":93,"props":9833,"children":9835},{"className":9834},[],[9836],{"type":59,"value":9837},"#zmmtg-root",{"type":54,"tag":110,"props":9839,"children":9840},{},[9841,9848,9853],{"type":54,"tag":132,"props":9842,"children":9843},{},[9844],{"type":54,"tag":73,"props":9845,"children":9846},{},[9847],{"type":59,"value":176},{"type":54,"tag":132,"props":9849,"children":9850},{},[9851],{"type":59,"value":9852},"Embeddable",{"type":54,"tag":132,"props":9854,"children":9855},{},[9856],{"type":59,"value":9857},"Full-page",{"type":54,"tag":110,"props":9859,"children":9860},{},[9861,9869,9874],{"type":54,"tag":132,"props":9862,"children":9863},{},[9864],{"type":54,"tag":73,"props":9865,"children":9866},{},[9867],{"type":59,"value":9868},"Preloading",{"type":54,"tag":132,"props":9870,"children":9871},{},[9872],{"type":59,"value":9873},"Not needed",{"type":54,"tag":132,"props":9875,"children":9876},{},[9877],{"type":54,"tag":93,"props":9878,"children":9880},{"className":9879},[],[9881],{"type":59,"value":9882},"preLoadWasm()",{"type":54,"tag":110,"props":9884,"children":9885},{},[9886,9894,9899],{"type":54,"tag":132,"props":9887,"children":9888},{},[9889],{"type":54,"tag":73,"props":9890,"children":9891},{},[9892],{"type":59,"value":9893},"Language",{"type":54,"tag":132,"props":9895,"children":9896},{},[9897],{"type":59,"value":9898},"Init option",{"type":54,"tag":132,"props":9900,"children":9901},{},[9902],{"type":54,"tag":93,"props":9903,"children":9905},{"className":9904},[],[9906],{"type":59,"value":9907},"i18n.load()",{"type":54,"tag":110,"props":9909,"children":9910},{},[9911,9918,9932],{"type":54,"tag":132,"props":9912,"children":9913},{},[9914],{"type":54,"tag":73,"props":9915,"children":9916},{},[9917],{"type":59,"value":214},{"type":54,"tag":132,"props":9919,"children":9920},{},[9921,9926,9927],{"type":54,"tag":93,"props":9922,"children":9924},{"className":9923},[],[9925],{"type":59,"value":223},{"type":59,"value":225},{"type":54,"tag":93,"props":9928,"children":9930},{"className":9929},[],[9931],{"type":59,"value":231},{"type":54,"tag":132,"props":9933,"children":9934},{},[9935],{"type":54,"tag":93,"props":9936,"children":9938},{"className":9937},[],[9939],{"type":59,"value":9940},"inMeetingServiceListener()",{"type":54,"tag":81,"props":9942,"children":9944},{"id":9943},"resources",[9945],{"type":59,"value":9946},"Resources",{"type":54,"tag":9948,"props":9949,"children":9950},"ul",{},[9951,9962,9971,9980,9989,9998],{"type":54,"tag":9952,"props":9953,"children":9954},"li",{},[9955],{"type":54,"tag":9956,"props":9957,"children":9959},"a",{"href":9958},"..\u002FSKILL.md",[9960],{"type":59,"value":9961},"Main Web SDK Skill",{"type":54,"tag":9952,"props":9963,"children":9964},{},[9965],{"type":54,"tag":9956,"props":9966,"children":9968},{"href":9967},"references\u002FREADME.md",[9969],{"type":59,"value":9970},"Reference Index",{"type":54,"tag":9952,"props":9972,"children":9973},{},[9974],{"type":54,"tag":9956,"props":9975,"children":9977},{"href":9976},"..\u002Ftroubleshooting\u002Ferror-codes.md",[9978],{"type":59,"value":9979},"Error Codes",{"type":54,"tag":9952,"props":9981,"children":9982},{},[9983],{"type":54,"tag":9956,"props":9984,"children":9986},{"href":9985},"..\u002Ftroubleshooting\u002Fcommon-issues.md",[9987],{"type":59,"value":9988},"Common Issues",{"type":54,"tag":9952,"props":9990,"children":9991},{},[9992],{"type":54,"tag":9956,"props":9993,"children":9995},{"href":9994},"..\u002Fconcepts\u002Fsharedarraybuffer.md",[9996],{"type":59,"value":9997},"SharedArrayBuffer Setup",{"type":54,"tag":9952,"props":9999,"children":10000},{},[10001],{"type":54,"tag":9956,"props":10002,"children":10006},{"href":10003,"rel":10004},"https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Fcomponents\u002Findex.html",[10005],"nofollow",[10007],{"type":59,"value":10008},"Official API Reference",{"type":54,"tag":81,"props":10010,"children":10012},{"id":10011},"operations",[10013],{"type":59,"value":10014},"Operations",{"type":54,"tag":9948,"props":10016,"children":10017},{},[10018],{"type":54,"tag":9952,"props":10019,"children":10020},{},[10021,10026],{"type":54,"tag":9956,"props":10022,"children":10024},{"href":10023},"RUNBOOK.md",[10025],{"type":59,"value":10023},{"type":59,"value":10027}," - 5-minute preflight and debugging checklist.",{"type":54,"tag":8910,"props":10029,"children":10030},{},[10031],{"type":59,"value":10032},"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":10034,"total":10216},[10035,10055,10069,10081,10100,10113,10134,10150,10164,10179,10187,10200],{"slug":10036,"name":10036,"fn":10037,"description":10038,"org":10039,"tags":10040,"stars":10052,"repoUrl":10053,"updatedAt":10054},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10041,10044,10047,10050],{"name":10042,"slug":10043,"type":16},"Creative","creative",{"name":10045,"slug":10046,"type":16},"Design","design",{"name":10048,"slug":10049,"type":16},"Generative Art","generative-art",{"name":10051,"slug":303,"type":16},"JavaScript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":10056,"name":10056,"fn":10057,"description":10058,"org":10059,"tags":10060,"stars":10052,"repoUrl":10053,"updatedAt":10068},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10061,10064,10065],{"name":10062,"slug":10063,"type":16},"Branding","branding",{"name":10045,"slug":10046,"type":16},{"name":10066,"slug":10067,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":10070,"name":10070,"fn":10071,"description":10072,"org":10073,"tags":10074,"stars":10052,"repoUrl":10053,"updatedAt":10080},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10075,10076,10077],{"name":10042,"slug":10043,"type":16},{"name":10045,"slug":10046,"type":16},{"name":10078,"slug":10079,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":10082,"name":10082,"fn":10083,"description":10084,"org":10085,"tags":10086,"stars":10052,"repoUrl":10053,"updatedAt":10099},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10087,10090,10091,10094,10096],{"name":10088,"slug":10089,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":10092,"slug":10093,"type":16},"Anthropic SDK","anthropic-sdk",{"name":10095,"slug":10082,"type":16},"Claude API",{"name":10097,"slug":10098,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":10101,"name":10101,"fn":10102,"description":10103,"org":10104,"tags":10105,"stars":10052,"repoUrl":10053,"updatedAt":10112},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10106,10109],{"name":10107,"slug":10108,"type":16},"Documentation","documentation",{"name":10110,"slug":10111,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":10114,"name":10114,"fn":10115,"description":10116,"org":10117,"tags":10118,"stars":10052,"repoUrl":10053,"updatedAt":10133},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10119,10122,10124,10127,10130],{"name":10120,"slug":10121,"type":16},"Documents","documents",{"name":10123,"slug":10114,"type":16},"DOCX",{"name":10125,"slug":10126,"type":16},"Office","office",{"name":10128,"slug":10129,"type":16},"Templates","templates",{"name":10131,"slug":10132,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":10135,"name":10135,"fn":10136,"description":10137,"org":10138,"tags":10139,"stars":10052,"repoUrl":10053,"updatedAt":10149},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10140,10141,10142,10143,10146],{"name":10045,"slug":10046,"type":16},{"name":24,"slug":25,"type":16},{"name":14,"slug":15,"type":16},{"name":10144,"slug":10145,"type":16},"Tailwind CSS","tailwind-css",{"name":10147,"slug":10148,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":10151,"name":10151,"fn":10152,"description":10153,"org":10154,"tags":10155,"stars":10052,"repoUrl":10053,"updatedAt":10163},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10156,10159,10160],{"name":10157,"slug":10158,"type":16},"Communications","communications",{"name":10128,"slug":10129,"type":16},{"name":10161,"slug":10162,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":10165,"name":10165,"fn":10166,"description":10167,"org":10168,"tags":10169,"stars":10052,"repoUrl":10053,"updatedAt":10178},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10170,10171,10174,10175],{"name":10088,"slug":10089,"type":16},{"name":10172,"slug":10173,"type":16},"API Development","api-development",{"name":10097,"slug":10098,"type":16},{"name":10176,"slug":10177,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":10079,"name":10079,"fn":10180,"description":10181,"org":10182,"tags":10183,"stars":10052,"repoUrl":10053,"updatedAt":10186},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10184,10185],{"name":10120,"slug":10121,"type":16},{"name":10078,"slug":10079,"type":16},"2026-04-06T17:56:02.483316",{"slug":10188,"name":10188,"fn":10189,"description":10190,"org":10191,"tags":10192,"stars":10052,"repoUrl":10053,"updatedAt":10199},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10193,10196],{"name":10194,"slug":10195,"type":16},"PowerPoint","powerpoint",{"name":10197,"slug":10198,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":10201,"name":10201,"fn":10202,"description":10203,"org":10204,"tags":10205,"stars":10052,"repoUrl":10053,"updatedAt":10215},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10206,10207,10208,10211,10214],{"name":10088,"slug":10089,"type":16},{"name":10107,"slug":10108,"type":16},{"name":10209,"slug":10210,"type":16},"Evals","evals",{"name":10212,"slug":10213,"type":16},"Performance","performance",{"name":10110,"slug":10111,"type":16},"2026-04-19T06:45:40.804",490,{"items":10218,"total":10325},[10219,10233,10249,10265,10281,10300,10312],{"slug":10220,"name":10220,"fn":10221,"description":10222,"org":10223,"tags":10224,"stars":26,"repoUrl":27,"updatedAt":10232},"accessibility-review","run WCAG accessibility audits","Run a WCAG 2.1 AA accessibility audit on a design or page. Trigger with \"audit accessibility\", \"check a11y\", \"is this accessible?\", or when reviewing a design for color contrast, keyboard navigation, touch target size, or screen reader behavior before handoff.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10225,10228,10229],{"name":10226,"slug":10227,"type":16},"Accessibility","accessibility",{"name":10045,"slug":10046,"type":16},{"name":10230,"slug":10231,"type":16},"WCAG","wcag","2026-04-06T17:58:05.682394",{"slug":10234,"name":10234,"fn":10235,"description":10236,"org":10237,"tags":10238,"stars":26,"repoUrl":27,"updatedAt":10248},"account-research","research accounts for sales intel","Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM. Trigger with \"research [company]\", \"look up [person]\", \"intel on [prospect]\", \"who is [name] at [company]\", or \"tell me about [company]\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10239,10242,10245],{"name":10240,"slug":10241,"type":16},"CRM","crm",{"name":10243,"slug":10244,"type":16},"Research","research",{"name":10246,"slug":10247,"type":16},"Sales","sales","2026-04-06T17:56:41.410418",{"slug":10250,"name":10250,"fn":10251,"description":10252,"org":10253,"tags":10254,"stars":26,"repoUrl":27,"updatedAt":10264},"analyze","answer data questions and run analyses","Answer data questions -- from quick lookups to full analyses. Use when looking up a single metric, investigating what's driving a trend or drop, comparing segments over time, or preparing a formal data report for stakeholders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10255,10258,10261],{"name":10256,"slug":10257,"type":16},"Analytics","analytics",{"name":10259,"slug":10260,"type":16},"Data Analysis","data-analysis",{"name":10262,"slug":10263,"type":16},"SQL","sql","2026-04-06T17:57:21.593647",{"slug":10266,"name":10266,"fn":10267,"description":10268,"org":10269,"tags":10270,"stars":26,"repoUrl":27,"updatedAt":10280},"architecture","create and evaluate architecture decision records","Create or evaluate an architecture decision record (ADR). Use when choosing between technologies (e.g., Kafka vs SQS), documenting a design decision with trade-offs and consequences, reviewing a system design proposal, or designing a new component from requirements and constraints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10271,10274,10276,10277],{"name":10272,"slug":10273,"type":16},"ADR","adr",{"name":10275,"slug":10266,"type":16},"Architecture",{"name":10107,"slug":10108,"type":16},{"name":10278,"slug":10279,"type":16},"Engineering","engineering","2026-04-06T17:57:49.26444",{"slug":10282,"name":10282,"fn":10283,"description":10284,"org":10285,"tags":10286,"stars":26,"repoUrl":27,"updatedAt":10299},"audit-support","support SOX 404 control testing","Support SOX 404 compliance with control testing methodology, sample selection, and documentation standards. Use when generating testing workpapers, selecting audit samples, classifying control deficiencies, or preparing for internal or external audits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10287,10290,10293,10296],{"name":10288,"slug":10289,"type":16},"Audit","audit",{"name":10291,"slug":10292,"type":16},"Finance","finance",{"name":10294,"slug":10295,"type":16},"Regulatory Compliance","regulatory-compliance",{"name":10297,"slug":10298,"type":16},"SOX","sox","2026-04-06T17:57:36.714815",{"slug":10301,"name":10301,"fn":10302,"description":10303,"org":10304,"tags":10305,"stars":26,"repoUrl":27,"updatedAt":10311},"brand-review","review content against brand voice","Review content against your brand voice, style guide, and messaging pillars, flagging deviations by severity with specific before\u002Fafter fixes. Use when checking a draft before it ships, when auditing copy for voice consistency and terminology, or when screening for unsubstantiated claims, missing disclaimers, and other legal flags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10306,10307,10310],{"name":10062,"slug":10063,"type":16},{"name":10308,"slug":10309,"type":16},"Marketing","marketing",{"name":10161,"slug":10162,"type":16},"2026-04-06T17:58:19.548331",{"slug":10313,"name":10313,"fn":10314,"description":10315,"org":10316,"tags":10317,"stars":26,"repoUrl":27,"updatedAt":10324},"brand-voice-enforcement","enforce brand voice in content","This skill applies brand guidelines to content creation. It should be used when the user asks to \"write an email\", \"draft a proposal\", \"create a pitch deck\", \"write a LinkedIn post\", \"draft a presentation\", \"write a Slack message\", \"draft sales content\", or any content creation request where brand voice should be applied. Also triggers on \"on-brand\", \"brand voice\", \"enforce voice\", \"apply brand guidelines\", \"brand-aligned content\", \"write in our voice\", \"use our brand tone\", \"make this sound like us\", \"rewrite this in our tone\", or \"this doesn't sound on-brand\". Not for generating guidelines from scratch (use guideline-generation) or discovering brand materials (use discover-brand).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10318,10319,10320,10323],{"name":10062,"slug":10063,"type":16},{"name":10157,"slug":10158,"type":16},{"name":10321,"slug":10322,"type":16},"Content Creation","content-creation",{"name":10161,"slug":10162,"type":16},"2026-04-06T18:00:23.528956",200]