@dcl-regenesislabs/bevy-explorer-web 0.1.0-27064633541.commit-60799d0 → 0.1.0-27267316371.commit-409cd61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.env CHANGED
@@ -1 +1 @@
1
- PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-27064633541.commit-60799d0"
1
+ PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-27267316371.commit-409cd61"
package/index.html CHANGED
@@ -411,7 +411,7 @@
411
411
  }
412
412
  </style>
413
413
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
414
- <script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-27064633541.commit-60799d0";</script>
414
+ <script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-27267316371.commit-409cd61";</script>
415
415
  </head>
416
416
  <body>
417
417
  <div id="header" class="container">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl-regenesislabs/bevy-explorer-web",
3
- "version": "0.1.0-27064633541.commit-60799d0",
3
+ "version": "0.1.0-27267316371.commit-409cd61",
4
4
  "scripts": {
5
5
  "postinstall": "node ./scripts/prebuild.js"
6
6
  },
@@ -8,6 +8,6 @@
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/decentraland/bevy-explorer.git"
10
10
  },
11
- "homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-27064633541.commit-60799d0",
12
- "commit": "60799d0485e961f6dd3c2e5229e418b47fb8ceeb"
11
+ "homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-27267316371.commit-409cd61",
12
+ "commit": "409cd6169d46d1db114c843d29c2f4c253a8c4e9"
13
13
  }
package/pkg/manifest.json CHANGED
@@ -1 +1 @@
1
- {"wasmSize":108826058}
1
+ {"wasmSize":109279415}
@@ -0,0 +1,162 @@
1
+ // Save scene files (the composite + imported assets) to the user's real filesystem on web, via the
2
+ // File System Access API. The user grants ONE directory (a workspace, or a specific project folder)
3
+ // and we remember its handle in IndexedDB (a FileSystemDirectoryHandle is structured-cloneable).
4
+ //
5
+ // We never trust the granted handle blindly: the engine passes the scene's identity — its absolute
6
+ // project root (for navigation) plus a fingerprint (projectId, else parcels+title) — and we locate
7
+ // the scene's project folder *under* the handle by walking the root path as suffixes (the handle may
8
+ // be the project root or an ancestor of it) and matching scene.json. A handle that doesn't contain
9
+ // the scene is rejected and the user is re-prompted, so we can't write into the wrong project.
10
+
11
+ const DB_NAME = 'dcl-editor'
12
+ const DB_VERSION = 2
13
+ const STORE = 'handles'
14
+ const HANDLE_KEY = 'scene-dir'
15
+
16
+ function openDb() {
17
+ return new Promise((resolve, reject) => {
18
+ // Bump DB_VERSION whenever STORE changes — onupgradeneeded only fires on a version increase, so
19
+ // an existing DB (e.g. from the old per-scene store) needs this to gain the current store.
20
+ const req = indexedDB.open(DB_NAME, DB_VERSION)
21
+ req.onupgradeneeded = () => {
22
+ const db = req.result
23
+ if (!db.objectStoreNames.contains(STORE)) db.createObjectStore(STORE)
24
+ }
25
+ req.onsuccess = () => resolve(req.result)
26
+ req.onerror = () => reject(req.error)
27
+ })
28
+ }
29
+
30
+ async function idbGet(key) {
31
+ const db = await openDb()
32
+ try {
33
+ return await new Promise((resolve, reject) => {
34
+ const req = db.transaction(STORE, 'readonly').objectStore(STORE).get(key)
35
+ req.onsuccess = () => resolve(req.result)
36
+ req.onerror = () => reject(req.error)
37
+ })
38
+ } finally {
39
+ db.close()
40
+ }
41
+ }
42
+
43
+ async function idbPut(key, value) {
44
+ const db = await openDb()
45
+ try {
46
+ await new Promise((resolve, reject) => {
47
+ const tx = db.transaction(STORE, 'readwrite')
48
+ tx.objectStore(STORE).put(value, key)
49
+ tx.oncomplete = () => resolve()
50
+ tx.onerror = () => reject(tx.error)
51
+ })
52
+ } finally {
53
+ db.close()
54
+ }
55
+ }
56
+
57
+ async function hasPermission(handle) {
58
+ const opts = { mode: 'readwrite' }
59
+ if ((await handle.queryPermission(opts)) === 'granted') return true
60
+ return (await handle.requestPermission(opts)) === 'granted'
61
+ }
62
+
63
+ // Navigate `segs` (directory names) down from `handle`; null if any segment is missing.
64
+ async function getDir(handle, segs) {
65
+ let dir = handle
66
+ for (const seg of segs) {
67
+ dir = await dir.getDirectoryHandle(seg, { create: false })
68
+ }
69
+ return dir
70
+ }
71
+
72
+ async function readSceneJson(dir) {
73
+ try {
74
+ const fh = await dir.getFileHandle('scene.json', { create: false })
75
+ return JSON.parse(await (await fh.getFile()).text())
76
+ } catch {
77
+ return null
78
+ }
79
+ }
80
+
81
+ // Does `sceneJson` identify the scene the engine described? projectId is authoritative; fall back to
82
+ // parcels + title for scenes without a Creator-Hub `source` block.
83
+ function sceneMatches(sceneJson, target) {
84
+ if (!sceneJson) return false
85
+ const projectId = sceneJson.source && sceneJson.source.projectId
86
+ if (target.projectId && projectId) return projectId === target.projectId
87
+ const parcels = (sceneJson.scene && sceneJson.scene.parcels) || []
88
+ const wantParcels = target.parcels || []
89
+ const parcelsMatch =
90
+ wantParcels.length > 0 &&
91
+ wantParcels.length === parcels.length &&
92
+ wantParcels.every((p) => parcels.includes(p))
93
+ const title = sceneJson.display && sceneJson.display.title
94
+ return parcelsMatch && (!target.title || target.title === title)
95
+ }
96
+
97
+ // Find the scene's project-root directory handle under `handle`, by trying the engine's absolute
98
+ // project path as suffixes — handle == project root (empty suffix) first, then handle == its parent,
99
+ // grandparent, … — and matching scene.json. Returns the dir handle, or null.
100
+ async function findProjectDir(handle, target) {
101
+ const segs = (target.root || '').split('/').filter(Boolean)
102
+ for (let i = segs.length; i >= 0; i--) {
103
+ let dir
104
+ try {
105
+ dir = await getDir(handle, segs.slice(i))
106
+ } catch {
107
+ continue
108
+ }
109
+ if (sceneMatches(await readSceneJson(dir), target)) return dir
110
+ }
111
+ return null
112
+ }
113
+
114
+ async function pickDir() {
115
+ const handle = await window.showDirectoryPicker({ id: 'dcl-scene', mode: 'readwrite' })
116
+ if (!(await hasPermission(handle))) throw new Error('permission denied')
117
+ await idbPut(HANDLE_KEY, handle)
118
+ return handle
119
+ }
120
+
121
+ // Resolved project-root dir handles for this session, keyed by scene fingerprint — so the folder is
122
+ // located/verified once, not on every file of a multi-file save.
123
+ const resolved = new Map()
124
+
125
+ // scene_target: JSON `{root, projectId, parcels, title}`; relPath: e.g. "assets/scene/main.composite";
126
+ // bytes: Uint8Array. Returns the written relative path.
127
+ export async function saveSceneFile(sceneTarget, relPath, bytes) {
128
+ const target = JSON.parse(sceneTarget)
129
+ // The wasm memory is a SharedArrayBuffer (atomics build) and `bytes` views it;
130
+ // FileSystemWritableFileStream.write() rejects views over shared memory, so copy first.
131
+ const data = new Uint8Array(bytes)
132
+
133
+ const cacheKey = target.projectId || target.root || ''
134
+ let projectDir = resolved.get(cacheKey)
135
+
136
+ if (!projectDir) {
137
+ let handle = await idbGet(HANDLE_KEY)
138
+ if (handle && !(await hasPermission(handle))) handle = null
139
+ if (handle) projectDir = await findProjectDir(handle, target)
140
+ if (!projectDir) {
141
+ // first save, or the remembered folder doesn't contain this scene — ask for one
142
+ handle = await pickDir()
143
+ projectDir = await findProjectDir(handle, target)
144
+ }
145
+ if (!projectDir) {
146
+ throw new Error("chosen folder isn't this scene's project (no matching scene.json)")
147
+ }
148
+ resolved.set(cacheKey, projectDir)
149
+ }
150
+
151
+ const parts = relPath.split('/')
152
+ const name = parts.pop()
153
+ let dir = projectDir
154
+ for (const part of parts) {
155
+ dir = await dir.getDirectoryHandle(part, { create: true })
156
+ }
157
+ const file = await dir.getFileHandle(name, { create: true })
158
+ const writable = await file.createWritable()
159
+ await writable.write(data)
160
+ await writable.close()
161
+ return `${projectDir.name}/${relPath}`
162
+ }
@@ -480,7 +480,7 @@ export interface InitOutput {
480
480
  readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________3_: (a: number, b: number) => void;
481
481
  readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___: (a: number, b: number) => void;
482
482
  readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__f64__wasm_bindgen_37b2aef40228fbc7___JsValue___Output_______: (a: number, b: number) => void;
483
- readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_24732aceb72db229___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
483
+ readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_f5f06b27f2b0ac62___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
484
484
  readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent____Output________1_: (a: number, b: number) => void;
485
485
  readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
486
486
  readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________1_: (a: number, b: number) => void;
@@ -490,7 +490,7 @@ export interface InitOutput {
490
490
  readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______: (a: number, b: number) => void;
491
491
  readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___f64__wasm_bindgen_37b2aef40228fbc7___JsValue______true_: (a: number, b: number, c: number, d: any) => void;
492
492
  readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_: (a: number, b: number, c: any) => [number, number];
493
- readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_: (a: number, b: number, c: any) => [number, number];
493
+ readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_f5f06b27f2b0ac62___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_: (a: number, b: number, c: any) => [number, number];
494
494
  readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Array__web_sys_dd19305f70232297___features__gen_ResizeObserver__ResizeObserver______true_: (a: number, b: number, c: any, d: any) => void;
495
495
  readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined_______true_: (a: number, b: number, c: any, d: any) => void;
496
496
  readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true_: (a: number, b: number, c: any) => void;
@@ -498,7 +498,7 @@ export interface InitOutput {
498
498
  readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2__2: (a: number, b: number, c: any) => void;
499
499
  readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__3_: (a: number, b: number, c: any) => void;
500
500
  readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
501
- readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
501
+ readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_f5f06b27f2b0ac62___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
502
502
  readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true__1_: (a: number, b: number, c: any) => void;
503
503
  readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true_: (a: number, b: number, c: any) => void;
504
504
  readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true_: (a: number, b: number, c: any) => void;
@@ -1,5 +1,6 @@
1
1
  /* @ts-self-types="./webgpu_build.d.ts" */
2
2
  import { local_audio_track_new, local_participant_identity, local_participant_metadata, local_participant_publish_data, local_participant_publish_track, local_participant_sid, local_participant_unpublish_track, microphonePermissionState, remote_participant_identity, remote_participant_metadata, remote_participant_sid, remote_track_publication_set_subscribed, remote_track_publication_sid, remote_track_publication_track, room_close, room_connect, room_name } from './snippets/comms-53217a45365bb5fa/livekit_web_bindings.js';
3
+ import { saveSceneFile } from './snippets/platform-8c8a49e43042a652/src/web_save.js';
3
4
 
4
5
  export class AudioCaptureOptions {
5
6
  static __wrap(ptr) {
@@ -3533,6 +3534,10 @@ function __wbg_get_imports(memory) {
3533
3534
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
3534
3535
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
3535
3536
  },
3537
+ __wbg_saveSceneFile_bc215f2d355f4cd6: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
3538
+ const ret = saveSceneFile(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3), getArrayU8FromWasm0(arg4, arg5));
3539
+ return ret;
3540
+ }, arguments); },
3536
3541
  __wbg_scheduler_265d2e42615c9392: function(arg0) {
3537
3542
  const ret = arg0.scheduler;
3538
3543
  return ret;
@@ -4677,142 +4682,142 @@ function __wbg_get_imports(memory) {
4677
4682
  return ret;
4678
4683
  },
4679
4684
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
4680
- // Cast intrinsic for `Closure(Closure { dtor_idx: 10826, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 10827, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4685
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 10828, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 10829, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4681
4686
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true_);
4682
4687
  return ret;
4683
4688
  },
4684
4689
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
4685
- // Cast intrinsic for `Closure(Closure { dtor_idx: 128306, function: Function { arguments: [Externref], shim_idx: 128307, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4690
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 128870, function: Function { arguments: [Externref], shim_idx: 128871, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4686
4691
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output________1_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2_);
4687
4692
  return ret;
4688
4693
  },
4689
4694
  __wbindgen_cast_0000000000000003: function(arg0, arg1) {
4690
- // Cast intrinsic for `Closure(Closure { dtor_idx: 128306, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 128307, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4695
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 128870, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 128871, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4691
4696
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output________1_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2__2);
4692
4697
  return ret;
4693
4698
  },
4694
4699
  __wbindgen_cast_0000000000000004: function(arg0, arg1) {
4695
- // Cast intrinsic for `Closure(Closure { dtor_idx: 135575, function: Function { arguments: [Externref], shim_idx: 135576, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4700
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 136139, function: Function { arguments: [Externref], shim_idx: 136140, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4696
4701
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output________2_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__3_);
4697
4702
  return ret;
4698
4703
  },
4699
4704
  __wbindgen_cast_0000000000000005: function(arg0, arg1) {
4700
- // Cast intrinsic for `Closure(Closure { dtor_idx: 136828, function: Function { arguments: [], shim_idx: 136829, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4705
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 137392, function: Function { arguments: [], shim_idx: 137393, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4701
4706
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________3_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__4_);
4702
4707
  return ret;
4703
4708
  },
4704
4709
  __wbindgen_cast_0000000000000006: function(arg0, arg1) {
4705
- // Cast intrinsic for `Closure(Closure { dtor_idx: 143681, function: Function { arguments: [Externref], shim_idx: 143682, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4710
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 144245, function: Function { arguments: [Externref], shim_idx: 144246, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4706
4711
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_);
4707
4712
  return ret;
4708
4713
  },
4709
4714
  __wbindgen_cast_0000000000000007: function(arg0, arg1) {
4710
- // Cast intrinsic for `Closure(Closure { dtor_idx: 143681, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 143684, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4715
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 144245, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 144248, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4711
4716
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_MessageEvent__MessageEvent______true_);
4712
4717
  return ret;
4713
4718
  },
4714
4719
  __wbindgen_cast_0000000000000008: function(arg0, arg1) {
4715
- // Cast intrinsic for `Closure(Closure { dtor_idx: 28316, function: Function { arguments: [F64, Externref], shim_idx: 28317, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4720
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 28804, function: Function { arguments: [F64, Externref], shim_idx: 28805, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4716
4721
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__f64__wasm_bindgen_37b2aef40228fbc7___JsValue___Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___f64__wasm_bindgen_37b2aef40228fbc7___JsValue______true_);
4717
4722
  return ret;
4718
4723
  },
4719
4724
  __wbindgen_cast_0000000000000009: function(arg0, arg1) {
4720
- // Cast intrinsic for `Closure(Closure { dtor_idx: 54839, function: Function { arguments: [Externref], shim_idx: 54840, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4721
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_24732aceb72db229___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_);
4725
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 55398, function: Function { arguments: [Externref], shim_idx: 55399, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4726
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_f5f06b27f2b0ac62___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_f5f06b27f2b0ac62___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_);
4722
4727
  return ret;
4723
4728
  },
4724
4729
  __wbindgen_cast_000000000000000a: function(arg0, arg1) {
4725
- // Cast intrinsic for `Closure(Closure { dtor_idx: 54839, function: Function { arguments: [Externref], shim_idx: 54842, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
4726
- const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_24732aceb72db229___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__room_event__RoomEvent______true_);
4730
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 55398, function: Function { arguments: [Externref], shim_idx: 55401, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
4731
+ const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_f5f06b27f2b0ac62___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_f5f06b27f2b0ac62___livekit__web__room_event__RoomEvent______true_);
4727
4732
  return ret;
4728
4733
  },
4729
4734
  __wbindgen_cast_000000000000000b: function(arg0, arg1) {
4730
- // Cast intrinsic for `Closure(Closure { dtor_idx: 57617, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 57618, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4735
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 58176, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 58177, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4731
4736
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent____Output________1_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true__1_);
4732
4737
  return ret;
4733
4738
  },
4734
4739
  __wbindgen_cast_000000000000000c: function(arg0, arg1) {
4735
- // Cast intrinsic for `Closure(Closure { dtor_idx: 57723, function: Function { arguments: [], shim_idx: 57724, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4740
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 58282, function: Function { arguments: [], shim_idx: 58283, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4736
4741
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true_);
4737
4742
  return ret;
4738
4743
  },
4739
4744
  __wbindgen_cast_000000000000000d: function(arg0, arg1) {
4740
- // Cast intrinsic for `Closure(Closure { dtor_idx: 61908, function: Function { arguments: [], shim_idx: 61909, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4745
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 62467, function: Function { arguments: [], shim_idx: 62468, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4741
4746
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________1_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__1_);
4742
4747
  return ret;
4743
4748
  },
4744
4749
  __wbindgen_cast_000000000000000e: function(arg0, arg1) {
4745
- // Cast intrinsic for `Closure(Closure { dtor_idx: 62260, function: Function { arguments: [], shim_idx: 62261, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4750
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 62819, function: Function { arguments: [], shim_idx: 62820, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4746
4751
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________2_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__2_);
4747
4752
  return ret;
4748
4753
  },
4749
4754
  __wbindgen_cast_000000000000000f: function(arg0, arg1) {
4750
- // Cast intrinsic for `Closure(Closure { dtor_idx: 62296, function: Function { arguments: [Externref], shim_idx: 62297, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4755
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 62855, function: Function { arguments: [Externref], shim_idx: 62856, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4751
4756
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true_);
4752
4757
  return ret;
4753
4758
  },
4754
4759
  __wbindgen_cast_0000000000000010: function(arg0, arg1) {
4755
- // Cast intrinsic for `Closure(Closure { dtor_idx: 63302, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 63303, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4760
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 63867, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 63868, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4756
4761
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true_);
4757
4762
  return ret;
4758
4763
  },
4759
4764
  __wbindgen_cast_0000000000000011: function(arg0, arg1) {
4760
- // Cast intrinsic for `Closure(Closure { dtor_idx: 63302, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 63303, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4765
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 63867, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 63868, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4761
4766
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__16);
4762
4767
  return ret;
4763
4768
  },
4764
4769
  __wbindgen_cast_0000000000000012: function(arg0, arg1) {
4765
- // Cast intrinsic for `Closure(Closure { dtor_idx: 63302, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 63303, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4770
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 63867, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 63868, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4766
4771
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__17);
4767
4772
  return ret;
4768
4773
  },
4769
4774
  __wbindgen_cast_0000000000000013: function(arg0, arg1) {
4770
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66394, function: Function { arguments: [Externref], shim_idx: 66395, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4775
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 66959, function: Function { arguments: [Externref], shim_idx: 66960, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4771
4776
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1_);
4772
4777
  return ret;
4773
4778
  },
4774
4779
  __wbindgen_cast_0000000000000014: function(arg0, arg1) {
4775
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66394, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 66402, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4780
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 66959, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 66967, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4776
4781
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Array__web_sys_dd19305f70232297___features__gen_ResizeObserver__ResizeObserver______true_);
4777
4782
  return ret;
4778
4783
  },
4779
4784
  __wbindgen_cast_0000000000000015: function(arg0, arg1) {
4780
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66394, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 66395, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4785
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 66959, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 66960, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4781
4786
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__20);
4782
4787
  return ret;
4783
4788
  },
4784
4789
  __wbindgen_cast_0000000000000016: function(arg0, arg1) {
4785
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66394, function: Function { arguments: [NamedExternref("Event")], shim_idx: 66395, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4790
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 66959, function: Function { arguments: [NamedExternref("Event")], shim_idx: 66960, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4786
4791
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__21);
4787
4792
  return ret;
4788
4793
  },
4789
4794
  __wbindgen_cast_0000000000000017: function(arg0, arg1) {
4790
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66394, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 66395, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4795
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 66959, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 66960, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4791
4796
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__22);
4792
4797
  return ret;
4793
4798
  },
4794
4799
  __wbindgen_cast_0000000000000018: function(arg0, arg1) {
4795
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66394, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 66395, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4800
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 66959, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 66960, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4796
4801
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__23);
4797
4802
  return ret;
4798
4803
  },
4799
4804
  __wbindgen_cast_0000000000000019: function(arg0, arg1) {
4800
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66394, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 66395, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4805
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 66959, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 66960, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4801
4806
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__24);
4802
4807
  return ret;
4803
4808
  },
4804
4809
  __wbindgen_cast_000000000000001a: function(arg0, arg1) {
4805
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66394, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 66395, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4810
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 66959, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 66960, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4806
4811
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__25);
4807
4812
  return ret;
4808
4813
  },
4809
4814
  __wbindgen_cast_000000000000001b: function(arg0, arg1) {
4810
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66394, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 66395, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4815
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 66959, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 66960, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4811
4816
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__26);
4812
4817
  return ret;
4813
4818
  },
4814
4819
  __wbindgen_cast_000000000000001c: function(arg0, arg1) {
4815
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66394, function: Function { arguments: [], shim_idx: 66410, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4820
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 66959, function: Function { arguments: [], shim_idx: 66975, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4816
4821
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__3_);
4817
4822
  return ret;
4818
4823
  },
@@ -5166,7 +5171,7 @@ function __wbg_get_imports(memory) {
5166
5171
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
5167
5172
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
5168
5173
  },
5169
- memory: memory || new WebAssembly.Memory({initial:892,maximum:65536,shared:true}),
5174
+ memory: memory || new WebAssembly.Memory({initial:895,maximum:65536,shared:true}),
5170
5175
  };
5171
5176
  return {
5172
5177
  __proto__: null,
@@ -5224,8 +5229,8 @@ function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_
5224
5229
  wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_MessageEvent__MessageEvent______true_(arg0, arg1, arg2);
5225
5230
  }
5226
5231
 
5227
- function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2) {
5228
- wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2);
5232
+ function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_f5f06b27f2b0ac62___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2) {
5233
+ wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_f5f06b27f2b0ac62___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2);
5229
5234
  }
5230
5235
 
5231
5236
  function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true__1_(arg0, arg1, arg2) {
@@ -5287,8 +5292,8 @@ function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bin
5287
5292
  }
5288
5293
  }
5289
5294
 
5290
- function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_(arg0, arg1, arg2) {
5291
- const ret = wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_(arg0, arg1, arg2);
5295
+ function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_f5f06b27f2b0ac62___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_(arg0, arg1, arg2) {
5296
+ const ret = wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_f5f06b27f2b0ac62___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_(arg0, arg1, arg2);
5292
5297
  if (ret[1]) {
5293
5298
  throw takeFromExternrefTable0(ret[0]);
5294
5299
  }
Binary file
@@ -157,7 +157,7 @@ export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35ab
157
157
  export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________3_: (a: number, b: number) => void;
158
158
  export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___: (a: number, b: number) => void;
159
159
  export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__f64__wasm_bindgen_37b2aef40228fbc7___JsValue___Output_______: (a: number, b: number) => void;
160
- export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_24732aceb72db229___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
160
+ export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_f5f06b27f2b0ac62___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
161
161
  export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent____Output________1_: (a: number, b: number) => void;
162
162
  export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
163
163
  export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________1_: (a: number, b: number) => void;
@@ -167,7 +167,7 @@ export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35ab
167
167
  export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______: (a: number, b: number) => void;
168
168
  export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___f64__wasm_bindgen_37b2aef40228fbc7___JsValue______true_: (a: number, b: number, c: number, d: any) => void;
169
169
  export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_: (a: number, b: number, c: any) => [number, number];
170
- export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_: (a: number, b: number, c: any) => [number, number];
170
+ export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_f5f06b27f2b0ac62___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_: (a: number, b: number, c: any) => [number, number];
171
171
  export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Array__web_sys_dd19305f70232297___features__gen_ResizeObserver__ResizeObserver______true_: (a: number, b: number, c: any, d: any) => void;
172
172
  export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined_______true_: (a: number, b: number, c: any, d: any) => void;
173
173
  export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true_: (a: number, b: number, c: any) => void;
@@ -175,7 +175,7 @@ export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm
175
175
  export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2__2: (a: number, b: number, c: any) => void;
176
176
  export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__3_: (a: number, b: number, c: any) => void;
177
177
  export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
178
- export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
178
+ export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_f5f06b27f2b0ac62___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
179
179
  export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true__1_: (a: number, b: number, c: any) => void;
180
180
  export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true_: (a: number, b: number, c: any) => void;
181
181
  export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true_: (a: number, b: number, c: any) => void;