@dcl-regenesislabs/bevy-explorer-web 0.1.0-24566184737.commit-8c18a3c → 0.1.0-24571802755.commit-5ebb07f

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-24566184737.commit-8c18a3c"
1
+ PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-24571802755.commit-5ebb07f"
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-24566184737.commit-8c18a3c";</script>
414
+ <script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-24571802755.commit-5ebb07f";</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-24566184737.commit-8c18a3c",
3
+ "version": "0.1.0-24571802755.commit-5ebb07f",
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-24566184737.commit-8c18a3c",
12
- "commit": "8c18a3c05f0449dd05dbeee62a121b8744de6d5c"
11
+ "homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-24571802755.commit-5ebb07f",
12
+ "commit": "5ebb07f0c2feaac490ecdb7d82983764b101632b"
13
13
  }
package/pkg/manifest.json CHANGED
@@ -1 +1 @@
1
- {"wasmSize":117380213}
1
+ {"wasmSize":115560821}
@@ -104,6 +104,12 @@ export function init_asset_load_thread(): void;
104
104
 
105
105
  export function is_super(state: WorkerContext): boolean;
106
106
 
107
+ export function op_accept_friend_request(state: WorkerContext, address: string): Promise<void>;
108
+
109
+ export function op_block_user(state: WorkerContext, address: string): Promise<void>;
110
+
111
+ export function op_cancel_friend_request(state: WorkerContext, address: string): Promise<void>;
112
+
107
113
  export function op_change_realm(state: WorkerContext, realm: string, message?: string | null): Promise<boolean>;
108
114
 
109
115
  export function op_check_for_update(state: WorkerContext): Promise<any>;
@@ -126,6 +132,8 @@ export function op_crdt_recv_from_renderer(op_state: WorkerContext): Promise<Arr
126
132
 
127
133
  export function op_crdt_send_to_renderer(op_state: WorkerContext, messages: ArrayBuffer): void;
128
134
 
135
+ export function op_delete_friend(state: WorkerContext, address: string): Promise<void>;
136
+
129
137
  export function op_emote(op_state: WorkerContext, emote: string): void;
130
138
 
131
139
  export function op_error(state: WorkerContext, message: string): void;
@@ -136,18 +144,30 @@ export function op_get_avatar_modifiers(state: WorkerContext): Promise<Array<any
136
144
 
137
145
  export function op_get_bindings(state: WorkerContext): Promise<any>;
138
146
 
147
+ export function op_get_blocked_users(state: WorkerContext): Promise<any>;
148
+
139
149
  export function op_get_chat_stream(state: WorkerContext): Promise<number>;
140
150
 
141
151
  export function op_get_connected_players(state: WorkerContext): Promise<string[]>;
142
152
 
143
153
  export function op_get_current_login(state: WorkerContext): string | undefined;
144
154
 
155
+ export function op_get_friend_connectivity_stream(state: WorkerContext): Promise<number>;
156
+
157
+ export function op_get_friends(state: WorkerContext): Promise<any>;
158
+
159
+ export function op_get_friendship_event_stream(state: WorkerContext): Promise<number>;
160
+
145
161
  export function op_get_home_scene(state: WorkerContext): Promise<any>;
146
162
 
147
163
  export function op_get_hover_stream(state: WorkerContext): Promise<number>;
148
164
 
149
165
  export function op_get_mic_state(state: WorkerContext): Promise<any>;
150
166
 
167
+ export function op_get_mutual_friends(state: WorkerContext, address: string): Promise<any>;
168
+
169
+ export function op_get_online_friends(state: WorkerContext): Promise<any>;
170
+
151
171
  export function op_get_params(state: WorkerContext): Promise<any>;
152
172
 
153
173
  export function op_get_permanent_permissions(state: WorkerContext, level: string, value?: string | null): Promise<Array<any>>;
@@ -168,8 +188,14 @@ export function op_get_previous_login(state: WorkerContext): Promise<string | un
168
188
 
169
189
  export function op_get_profile_extras(state: WorkerContext): Promise<any>;
170
190
 
191
+ export function op_get_received_friend_requests(state: WorkerContext): Promise<any>;
192
+
171
193
  export function op_get_scene_loading_ui_stream(state: WorkerContext): Promise<number>;
172
194
 
195
+ export function op_get_sent_friend_requests(state: WorkerContext): Promise<any>;
196
+
197
+ export function op_get_social_initialized(state: WorkerContext): Promise<boolean>;
198
+
173
199
  export function op_get_system_action_stream(state: WorkerContext): Promise<number>;
174
200
 
175
201
  export function op_get_texture_size(state: WorkerContext, src: string): Promise<any>;
@@ -220,6 +246,10 @@ export function op_read_chat_stream(state: WorkerContext, rid: number): Promise<
220
246
 
221
247
  export function op_read_file(op_state: WorkerContext, filename: string): Promise<any>;
222
248
 
249
+ export function op_read_friend_connectivity_stream(state: WorkerContext, rid: number): Promise<any>;
250
+
251
+ export function op_read_friendship_event_stream(state: WorkerContext, rid: number): Promise<any>;
252
+
223
253
  export function op_read_hover_stream(state: WorkerContext, rid: number): Promise<any>;
224
254
 
225
255
  export function op_read_permission_request_stream(state: WorkerContext, rid: number): Promise<any>;
@@ -234,6 +264,8 @@ export function op_read_voice_stream(state: WorkerContext, rid: number): Promise
234
264
 
235
265
  export function op_realm_information(op_state: WorkerContext): Promise<any>;
236
266
 
267
+ export function op_reject_friend_request(state: WorkerContext, address: string): Promise<void>;
268
+
237
269
  export function op_scene_emote(op_state: WorkerContext, emote: string, looping: boolean): Promise<void>;
238
270
 
239
271
  export function op_scene_information(op_state: WorkerContext): Promise<any>;
@@ -244,6 +276,8 @@ export function op_send_batch(state: WorkerContext): Array<any>;
244
276
 
245
277
  export function op_send_chat(state: WorkerContext, message: string, channel: string): void;
246
278
 
279
+ export function op_send_friend_request(state: WorkerContext, address: string, message?: string | null): Promise<void>;
280
+
247
281
  export function op_set_avatar(state: WorkerContext, base: any, equip: any, has_claimed_name: boolean | null | undefined, profile_extras: any): Promise<number>;
248
282
 
249
283
  export function op_set_bindings(state: WorkerContext, bindings: any): Promise<void>;
@@ -276,6 +310,8 @@ export function op_testing_enabled(op_state: WorkerContext): boolean;
276
310
 
277
311
  export function op_ui_focus(op_state: WorkerContext, apply: boolean, element_id?: string | null): Promise<any>;
278
312
 
313
+ export function op_unblock_user(state: WorkerContext, address: string): Promise<void>;
314
+
279
315
  export function op_unsubscribe(state: WorkerContext, id: string): void;
280
316
 
281
317
  export function op_walk_player_to(op_state: WorkerContext, position: any, stop_threshold: number, timeout?: number | null): Promise<boolean>;
@@ -332,6 +368,9 @@ export interface InitOutput {
332
368
  readonly builtin_module: (a: number, b: number, c: number) => [number, number, number, number];
333
369
  readonly drop_context: (a: number) => void;
334
370
  readonly is_super: (a: number) => number;
371
+ readonly op_accept_friend_request: (a: number, b: number, c: number) => any;
372
+ readonly op_block_user: (a: number, b: number, c: number) => any;
373
+ readonly op_cancel_friend_request: (a: number, b: number, c: number) => any;
335
374
  readonly op_change_realm: (a: number, b: number, c: number, d: number, e: number) => any;
336
375
  readonly op_check_for_update: (a: number) => any;
337
376
  readonly op_comms_recv_binary: (a: number) => any;
@@ -343,17 +382,24 @@ export interface InitOutput {
343
382
  readonly op_copy_to_clipboard: (a: number, b: number, c: number) => any;
344
383
  readonly op_crdt_recv_from_renderer: (a: number) => any;
345
384
  readonly op_crdt_send_to_renderer: (a: number, b: any) => void;
385
+ readonly op_delete_friend: (a: number, b: number, c: number) => any;
346
386
  readonly op_emote: (a: number, b: number, c: number) => void;
347
387
  readonly op_error: (a: number, b: number, c: number) => void;
348
388
  readonly op_external_url: (a: number, b: number, c: number) => any;
349
389
  readonly op_get_avatar_modifiers: (a: number) => any;
350
390
  readonly op_get_bindings: (a: number) => any;
391
+ readonly op_get_blocked_users: (a: number) => any;
351
392
  readonly op_get_chat_stream: (a: number) => any;
352
393
  readonly op_get_connected_players: (a: number) => any;
353
394
  readonly op_get_current_login: (a: number) => [number, number];
395
+ readonly op_get_friend_connectivity_stream: (a: number) => any;
396
+ readonly op_get_friends: (a: number) => any;
397
+ readonly op_get_friendship_event_stream: (a: number) => any;
354
398
  readonly op_get_home_scene: (a: number) => any;
355
399
  readonly op_get_hover_stream: (a: number) => any;
356
400
  readonly op_get_mic_state: (a: number) => any;
401
+ readonly op_get_mutual_friends: (a: number, b: number, c: number) => any;
402
+ readonly op_get_online_friends: (a: number) => any;
357
403
  readonly op_get_params: (a: number) => any;
358
404
  readonly op_get_permanent_permissions: (a: number, b: number, c: number, d: number, e: number) => any;
359
405
  readonly op_get_permission_request_stream: (a: number) => any;
@@ -364,7 +410,10 @@ export interface InitOutput {
364
410
  readonly op_get_players_in_scene: (a: number) => any;
365
411
  readonly op_get_previous_login: (a: number) => any;
366
412
  readonly op_get_profile_extras: (a: number) => any;
413
+ readonly op_get_received_friend_requests: (a: number) => any;
367
414
  readonly op_get_scene_loading_ui_stream: (a: number) => any;
415
+ readonly op_get_sent_friend_requests: (a: number) => any;
416
+ readonly op_get_social_initialized: (a: number) => any;
368
417
  readonly op_get_system_action_stream: (a: number) => any;
369
418
  readonly op_get_texture_size: (a: number, b: number, c: number) => any;
370
419
  readonly op_get_user_data: (a: number) => any;
@@ -390,6 +439,8 @@ export interface InitOutput {
390
439
  readonly op_quit: (a: number) => void;
391
440
  readonly op_read_chat_stream: (a: number, b: number) => any;
392
441
  readonly op_read_file: (a: number, b: number, c: number) => any;
442
+ readonly op_read_friend_connectivity_stream: (a: number, b: number) => any;
443
+ readonly op_read_friendship_event_stream: (a: number, b: number) => any;
393
444
  readonly op_read_hover_stream: (a: number, b: number) => any;
394
445
  readonly op_read_permission_request_stream: (a: number, b: number) => any;
395
446
  readonly op_read_permission_used_stream: (a: number, b: number) => any;
@@ -397,11 +448,13 @@ export interface InitOutput {
397
448
  readonly op_read_system_action_stream: (a: number, b: number) => any;
398
449
  readonly op_read_voice_stream: (a: number, b: number) => any;
399
450
  readonly op_realm_information: (a: number) => any;
451
+ readonly op_reject_friend_request: (a: number, b: number, c: number) => any;
400
452
  readonly op_scene_emote: (a: number, b: number, c: number, d: number) => any;
401
453
  readonly op_scene_information: (a: number) => any;
402
454
  readonly op_send_async: (a: number, b: number, c: number, d: number, e: number) => any;
403
455
  readonly op_send_batch: (a: number) => any;
404
456
  readonly op_send_chat: (a: number, b: number, c: number, d: number, e: number) => void;
457
+ readonly op_send_friend_request: (a: number, b: number, c: number, d: number, e: number) => any;
405
458
  readonly op_set_avatar: (a: number, b: any, c: any, d: number, e: any) => any;
406
459
  readonly op_set_bindings: (a: number, b: any) => any;
407
460
  readonly op_set_elapsed: (a: number, b: number) => void;
@@ -418,6 +471,7 @@ export interface InitOutput {
418
471
  readonly op_teleport_to: (a: number, b: number, c: number) => any;
419
472
  readonly op_testing_enabled: (a: number) => number;
420
473
  readonly op_ui_focus: (a: number, b: number, c: number, d: number) => any;
474
+ readonly op_unblock_user: (a: number, b: number, c: number) => any;
421
475
  readonly op_unsubscribe: (a: number, b: number, c: number) => void;
422
476
  readonly op_walk_player_to: (a: number, b: any, c: number, d: number) => any;
423
477
  readonly op_webstorage_clear: (a: number) => void;
@@ -435,10 +489,11 @@ export interface InitOutput {
435
489
  readonly gpu_cache_hash: () => [number, number];
436
490
  readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output________2_: (a: number, b: number) => void;
437
491
  readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output________3_: (a: number, b: number) => void;
492
+ readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent____Output_______: (a: number, b: number) => void;
438
493
  readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___: (a: number, b: number) => void;
439
494
  readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__f64__wasm_bindgen_c050fca1e6679df8___JsValue___Output_______: (a: number, b: number) => void;
440
- readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_59f0ff3450764947___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
441
- readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent____Output_______: (a: number, b: number) => void;
495
+ readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_b8376d50153b9887___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
496
+ readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent____Output________1_: (a: number, b: number) => void;
442
497
  readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
443
498
  readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output_______: (a: number, b: number) => void;
444
499
  readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________1_: (a: number, b: number) => void;
@@ -449,28 +504,29 @@ export interface InitOutput {
449
504
  readonly wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______: (a: number, b: number) => void;
450
505
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___f64__wasm_bindgen_c050fca1e6679df8___JsValue______true_: (a: number, b: number, c: number, d: any) => void;
451
506
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_: (a: number, b: number, c: any) => [number, number];
452
- readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_59f0ff3450764947___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_: (a: number, b: number, c: any) => [number, number];
507
+ readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_b8376d50153b9887___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_: (a: number, b: number, c: any) => [number, number];
453
508
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___js_sys_d40b129ce13bfafb___Array__web_sys_4810301cc3ef8c1f___features__gen_ResizeObserver__ResizeObserver______true_: (a: number, b: number, c: any, d: any) => void;
454
509
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___js_sys_d40b129ce13bfafb___Function_fn_wasm_bindgen_c050fca1e6679df8___JsValue_____wasm_bindgen_c050fca1e6679df8___sys__Undefined___js_sys_d40b129ce13bfafb___Function_fn_wasm_bindgen_c050fca1e6679df8___JsValue_____wasm_bindgen_c050fca1e6679df8___sys__Undefined_______true_: (a: number, b: number, c: any, d: any) => void;
455
510
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__3_: (a: number, b: number, c: any) => void;
456
511
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__3__1: (a: number, b: number, c: any) => void;
457
512
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__4_: (a: number, b: number, c: any) => void;
458
- readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
459
- readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_59f0ff3450764947___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
460
513
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true_: (a: number, b: number, c: any) => void;
514
+ readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
515
+ readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_b8376d50153b9887___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
516
+ readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true__1_: (a: number, b: number, c: any) => void;
461
517
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true_: (a: number, b: number, c: any) => void;
462
518
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true_: (a: number, b: number, c: any) => void;
463
- readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__13: (a: number, b: number, c: any) => void;
464
519
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__14: (a: number, b: number, c: any) => void;
520
+ readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__15: (a: number, b: number, c: any) => void;
465
521
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__1_: (a: number, b: number, c: any) => void;
466
522
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2_: (a: number, b: number, c: any) => void;
467
- readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__20: (a: number, b: number, c: any) => void;
468
523
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__21: (a: number, b: number, c: any) => void;
469
524
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__22: (a: number, b: number, c: any) => void;
470
525
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__23: (a: number, b: number, c: any) => void;
471
526
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__24: (a: number, b: number, c: any) => void;
472
527
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__25: (a: number, b: number, c: any) => void;
473
528
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__26: (a: number, b: number, c: any) => void;
529
+ readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__27: (a: number, b: number, c: any) => void;
474
530
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true_: (a: number, b: number) => void;
475
531
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__1_: (a: number, b: number) => void;
476
532
  readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__2_: (a: number, b: number) => void;
@@ -366,6 +366,45 @@ export function is_super(state) {
366
366
  return ret !== 0;
367
367
  }
368
368
 
369
+ /**
370
+ * @param {WorkerContext} state
371
+ * @param {string} address
372
+ * @returns {Promise<void>}
373
+ */
374
+ export function op_accept_friend_request(state, address) {
375
+ _assertClass(state, WorkerContext);
376
+ const ptr0 = passStringToWasm0(address, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
377
+ const len0 = WASM_VECTOR_LEN;
378
+ const ret = wasm.op_accept_friend_request(state.__wbg_ptr, ptr0, len0);
379
+ return ret;
380
+ }
381
+
382
+ /**
383
+ * @param {WorkerContext} state
384
+ * @param {string} address
385
+ * @returns {Promise<void>}
386
+ */
387
+ export function op_block_user(state, address) {
388
+ _assertClass(state, WorkerContext);
389
+ const ptr0 = passStringToWasm0(address, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
390
+ const len0 = WASM_VECTOR_LEN;
391
+ const ret = wasm.op_block_user(state.__wbg_ptr, ptr0, len0);
392
+ return ret;
393
+ }
394
+
395
+ /**
396
+ * @param {WorkerContext} state
397
+ * @param {string} address
398
+ * @returns {Promise<void>}
399
+ */
400
+ export function op_cancel_friend_request(state, address) {
401
+ _assertClass(state, WorkerContext);
402
+ const ptr0 = passStringToWasm0(address, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
403
+ const len0 = WASM_VECTOR_LEN;
404
+ const ret = wasm.op_cancel_friend_request(state.__wbg_ptr, ptr0, len0);
405
+ return ret;
406
+ }
407
+
369
408
  /**
370
409
  * @param {WorkerContext} state
371
410
  * @param {string} realm
@@ -497,6 +536,19 @@ export function op_crdt_send_to_renderer(op_state, messages) {
497
536
  wasm.op_crdt_send_to_renderer(op_state.__wbg_ptr, messages);
498
537
  }
499
538
 
539
+ /**
540
+ * @param {WorkerContext} state
541
+ * @param {string} address
542
+ * @returns {Promise<void>}
543
+ */
544
+ export function op_delete_friend(state, address) {
545
+ _assertClass(state, WorkerContext);
546
+ const ptr0 = passStringToWasm0(address, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
547
+ const len0 = WASM_VECTOR_LEN;
548
+ const ret = wasm.op_delete_friend(state.__wbg_ptr, ptr0, len0);
549
+ return ret;
550
+ }
551
+
500
552
  /**
501
553
  * @param {WorkerContext} op_state
502
554
  * @param {string} emote
@@ -552,6 +604,16 @@ export function op_get_bindings(state) {
552
604
  return ret;
553
605
  }
554
606
 
607
+ /**
608
+ * @param {WorkerContext} state
609
+ * @returns {Promise<any>}
610
+ */
611
+ export function op_get_blocked_users(state) {
612
+ _assertClass(state, WorkerContext);
613
+ const ret = wasm.op_get_blocked_users(state.__wbg_ptr);
614
+ return ret;
615
+ }
616
+
555
617
  /**
556
618
  * @param {WorkerContext} state
557
619
  * @returns {Promise<number>}
@@ -587,6 +649,36 @@ export function op_get_current_login(state) {
587
649
  return v1;
588
650
  }
589
651
 
652
+ /**
653
+ * @param {WorkerContext} state
654
+ * @returns {Promise<number>}
655
+ */
656
+ export function op_get_friend_connectivity_stream(state) {
657
+ _assertClass(state, WorkerContext);
658
+ const ret = wasm.op_get_friend_connectivity_stream(state.__wbg_ptr);
659
+ return ret;
660
+ }
661
+
662
+ /**
663
+ * @param {WorkerContext} state
664
+ * @returns {Promise<any>}
665
+ */
666
+ export function op_get_friends(state) {
667
+ _assertClass(state, WorkerContext);
668
+ const ret = wasm.op_get_friends(state.__wbg_ptr);
669
+ return ret;
670
+ }
671
+
672
+ /**
673
+ * @param {WorkerContext} state
674
+ * @returns {Promise<number>}
675
+ */
676
+ export function op_get_friendship_event_stream(state) {
677
+ _assertClass(state, WorkerContext);
678
+ const ret = wasm.op_get_friendship_event_stream(state.__wbg_ptr);
679
+ return ret;
680
+ }
681
+
590
682
  /**
591
683
  * @param {WorkerContext} state
592
684
  * @returns {Promise<any>}
@@ -617,6 +709,29 @@ export function op_get_mic_state(state) {
617
709
  return ret;
618
710
  }
619
711
 
712
+ /**
713
+ * @param {WorkerContext} state
714
+ * @param {string} address
715
+ * @returns {Promise<any>}
716
+ */
717
+ export function op_get_mutual_friends(state, address) {
718
+ _assertClass(state, WorkerContext);
719
+ const ptr0 = passStringToWasm0(address, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
720
+ const len0 = WASM_VECTOR_LEN;
721
+ const ret = wasm.op_get_mutual_friends(state.__wbg_ptr, ptr0, len0);
722
+ return ret;
723
+ }
724
+
725
+ /**
726
+ * @param {WorkerContext} state
727
+ * @returns {Promise<any>}
728
+ */
729
+ export function op_get_online_friends(state) {
730
+ _assertClass(state, WorkerContext);
731
+ const ret = wasm.op_get_online_friends(state.__wbg_ptr);
732
+ return ret;
733
+ }
734
+
620
735
  /**
621
736
  * @param {WorkerContext} state
622
737
  * @returns {Promise<any>}
@@ -734,6 +849,16 @@ export function op_get_profile_extras(state) {
734
849
  return ret;
735
850
  }
736
851
 
852
+ /**
853
+ * @param {WorkerContext} state
854
+ * @returns {Promise<any>}
855
+ */
856
+ export function op_get_received_friend_requests(state) {
857
+ _assertClass(state, WorkerContext);
858
+ const ret = wasm.op_get_received_friend_requests(state.__wbg_ptr);
859
+ return ret;
860
+ }
861
+
737
862
  /**
738
863
  * @param {WorkerContext} state
739
864
  * @returns {Promise<number>}
@@ -744,6 +869,26 @@ export function op_get_scene_loading_ui_stream(state) {
744
869
  return ret;
745
870
  }
746
871
 
872
+ /**
873
+ * @param {WorkerContext} state
874
+ * @returns {Promise<any>}
875
+ */
876
+ export function op_get_sent_friend_requests(state) {
877
+ _assertClass(state, WorkerContext);
878
+ const ret = wasm.op_get_sent_friend_requests(state.__wbg_ptr);
879
+ return ret;
880
+ }
881
+
882
+ /**
883
+ * @param {WorkerContext} state
884
+ * @returns {Promise<boolean>}
885
+ */
886
+ export function op_get_social_initialized(state) {
887
+ _assertClass(state, WorkerContext);
888
+ const ret = wasm.op_get_social_initialized(state.__wbg_ptr);
889
+ return ret;
890
+ }
891
+
747
892
  /**
748
893
  * @param {WorkerContext} state
749
894
  * @returns {Promise<number>}
@@ -1017,6 +1162,28 @@ export function op_read_file(op_state, filename) {
1017
1162
  return ret;
1018
1163
  }
1019
1164
 
1165
+ /**
1166
+ * @param {WorkerContext} state
1167
+ * @param {number} rid
1168
+ * @returns {Promise<any>}
1169
+ */
1170
+ export function op_read_friend_connectivity_stream(state, rid) {
1171
+ _assertClass(state, WorkerContext);
1172
+ const ret = wasm.op_read_friend_connectivity_stream(state.__wbg_ptr, rid);
1173
+ return ret;
1174
+ }
1175
+
1176
+ /**
1177
+ * @param {WorkerContext} state
1178
+ * @param {number} rid
1179
+ * @returns {Promise<any>}
1180
+ */
1181
+ export function op_read_friendship_event_stream(state, rid) {
1182
+ _assertClass(state, WorkerContext);
1183
+ const ret = wasm.op_read_friendship_event_stream(state.__wbg_ptr, rid);
1184
+ return ret;
1185
+ }
1186
+
1020
1187
  /**
1021
1188
  * @param {WorkerContext} state
1022
1189
  * @param {number} rid
@@ -1093,6 +1260,19 @@ export function op_realm_information(op_state) {
1093
1260
  return ret;
1094
1261
  }
1095
1262
 
1263
+ /**
1264
+ * @param {WorkerContext} state
1265
+ * @param {string} address
1266
+ * @returns {Promise<void>}
1267
+ */
1268
+ export function op_reject_friend_request(state, address) {
1269
+ _assertClass(state, WorkerContext);
1270
+ const ptr0 = passStringToWasm0(address, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1271
+ const len0 = WASM_VECTOR_LEN;
1272
+ const ret = wasm.op_reject_friend_request(state.__wbg_ptr, ptr0, len0);
1273
+ return ret;
1274
+ }
1275
+
1096
1276
  /**
1097
1277
  * @param {WorkerContext} op_state
1098
1278
  * @param {string} emote
@@ -1157,6 +1337,22 @@ export function op_send_chat(state, message, channel) {
1157
1337
  wasm.op_send_chat(state.__wbg_ptr, ptr0, len0, ptr1, len1);
1158
1338
  }
1159
1339
 
1340
+ /**
1341
+ * @param {WorkerContext} state
1342
+ * @param {string} address
1343
+ * @param {string | null} [message]
1344
+ * @returns {Promise<void>}
1345
+ */
1346
+ export function op_send_friend_request(state, address, message) {
1347
+ _assertClass(state, WorkerContext);
1348
+ const ptr0 = passStringToWasm0(address, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1349
+ const len0 = WASM_VECTOR_LEN;
1350
+ var ptr1 = isLikeNone(message) ? 0 : passStringToWasm0(message, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1351
+ var len1 = WASM_VECTOR_LEN;
1352
+ const ret = wasm.op_send_friend_request(state.__wbg_ptr, ptr0, len0, ptr1, len1);
1353
+ return ret;
1354
+ }
1355
+
1160
1356
  /**
1161
1357
  * @param {WorkerContext} state
1162
1358
  * @param {any} base
@@ -1362,6 +1558,19 @@ export function op_ui_focus(op_state, apply, element_id) {
1362
1558
  return ret;
1363
1559
  }
1364
1560
 
1561
+ /**
1562
+ * @param {WorkerContext} state
1563
+ * @param {string} address
1564
+ * @returns {Promise<void>}
1565
+ */
1566
+ export function op_unblock_user(state, address) {
1567
+ _assertClass(state, WorkerContext);
1568
+ const ptr0 = passStringToWasm0(address, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1569
+ const len0 = WASM_VECTOR_LEN;
1570
+ const ret = wasm.op_unblock_user(state.__wbg_ptr, ptr0, len0);
1571
+ return ret;
1572
+ }
1573
+
1365
1574
  /**
1366
1575
  * @param {WorkerContext} state
1367
1576
  * @param {string} id
@@ -4441,185 +4650,190 @@ function __wbg_get_imports(memory) {
4441
4650
  return ret;
4442
4651
  },
4443
4652
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
4444
- // Cast intrinsic for `Closure(Closure { dtor_idx: 124925, function: Function { arguments: [Externref], shim_idx: 124926, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4653
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 125941, function: Function { arguments: [Externref], shim_idx: 125942, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4445
4654
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output________2_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__3_);
4446
4655
  return ret;
4447
4656
  },
4448
4657
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
4449
- // Cast intrinsic for `Closure(Closure { dtor_idx: 124925, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 124926, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4658
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 125941, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 125942, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4450
4659
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output________2_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__3__1);
4451
4660
  return ret;
4452
4661
  },
4453
4662
  __wbindgen_cast_0000000000000003: function(arg0, arg1) {
4454
- // Cast intrinsic for `Closure(Closure { dtor_idx: 132200, function: Function { arguments: [Externref], shim_idx: 132201, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4663
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 133211, function: Function { arguments: [Externref], shim_idx: 133212, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4455
4664
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output________3_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__4_);
4456
4665
  return ret;
4457
4666
  },
4458
4667
  __wbindgen_cast_0000000000000004: function(arg0, arg1) {
4459
- // Cast intrinsic for `Closure(Closure { dtor_idx: 140257, function: Function { arguments: [Externref], shim_idx: 140258, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4460
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_);
4668
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 13833, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 13834, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4669
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true_);
4461
4670
  return ret;
4462
4671
  },
4463
4672
  __wbindgen_cast_0000000000000005: function(arg0, arg1) {
4464
- // Cast intrinsic for `Closure(Closure { dtor_idx: 140257, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 140260, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4465
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_MessageEvent__MessageEvent______true_);
4673
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 141313, function: Function { arguments: [Externref], shim_idx: 141314, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4674
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_);
4466
4675
  return ret;
4467
4676
  },
4468
4677
  __wbindgen_cast_0000000000000006: function(arg0, arg1) {
4469
- // Cast intrinsic for `Closure(Closure { dtor_idx: 17989, function: Function { arguments: [F64, Externref], shim_idx: 17990, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4470
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__f64__wasm_bindgen_c050fca1e6679df8___JsValue___Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___f64__wasm_bindgen_c050fca1e6679df8___JsValue______true_);
4678
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 141313, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 141316, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4679
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_MessageEvent__MessageEvent______true_);
4471
4680
  return ret;
4472
4681
  },
4473
4682
  __wbindgen_cast_0000000000000007: function(arg0, arg1) {
4474
- // Cast intrinsic for `Closure(Closure { dtor_idx: 46069, function: Function { arguments: [Externref], shim_idx: 46070, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4475
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_59f0ff3450764947___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_59f0ff3450764947___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_);
4683
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 18500, function: Function { arguments: [F64, Externref], shim_idx: 18501, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4684
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__f64__wasm_bindgen_c050fca1e6679df8___JsValue___Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___f64__wasm_bindgen_c050fca1e6679df8___JsValue______true_);
4476
4685
  return ret;
4477
4686
  },
4478
4687
  __wbindgen_cast_0000000000000008: function(arg0, arg1) {
4479
- // Cast intrinsic for `Closure(Closure { dtor_idx: 46069, function: Function { arguments: [Externref], shim_idx: 46072, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
4480
- const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_59f0ff3450764947___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_59f0ff3450764947___livekit__web__room_event__RoomEvent______true_);
4688
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 46693, function: Function { arguments: [Externref], shim_idx: 46694, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4689
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_b8376d50153b9887___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_b8376d50153b9887___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_);
4481
4690
  return ret;
4482
4691
  },
4483
4692
  __wbindgen_cast_0000000000000009: function(arg0, arg1) {
4484
- // Cast intrinsic for `Closure(Closure { dtor_idx: 55756, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 55757, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4485
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true_);
4693
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 46693, function: Function { arguments: [Externref], shim_idx: 46696, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
4694
+ const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_b8376d50153b9887___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_b8376d50153b9887___livekit__web__room_event__RoomEvent______true_);
4486
4695
  return ret;
4487
4696
  },
4488
4697
  __wbindgen_cast_000000000000000a: function(arg0, arg1) {
4489
- // Cast intrinsic for `Closure(Closure { dtor_idx: 55862, function: Function { arguments: [], shim_idx: 55863, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4490
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true_);
4698
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 56490, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 56491, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4699
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent____Output________1_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true__1_);
4491
4700
  return ret;
4492
4701
  },
4493
4702
  __wbindgen_cast_000000000000000b: function(arg0, arg1) {
4494
- // Cast intrinsic for `Closure(Closure { dtor_idx: 55865, function: Function { arguments: [Externref], shim_idx: 55866, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4495
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true_);
4703
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 56596, function: Function { arguments: [], shim_idx: 56597, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4704
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true_);
4496
4705
  return ret;
4497
4706
  },
4498
4707
  __wbindgen_cast_000000000000000c: function(arg0, arg1) {
4499
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59193, function: Function { arguments: [], shim_idx: 59194, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4500
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________1_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__1_);
4708
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 56599, function: Function { arguments: [Externref], shim_idx: 56600, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4709
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true_);
4501
4710
  return ret;
4502
4711
  },
4503
4712
  __wbindgen_cast_000000000000000d: function(arg0, arg1) {
4504
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59806, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 59807, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4505
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true_);
4713
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 59937, function: Function { arguments: [], shim_idx: 59938, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4714
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________1_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__1_);
4506
4715
  return ret;
4507
4716
  },
4508
4717
  __wbindgen_cast_000000000000000e: function(arg0, arg1) {
4509
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59806, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 59807, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4510
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__13);
4718
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 60557, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 60558, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4719
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true_);
4511
4720
  return ret;
4512
4721
  },
4513
4722
  __wbindgen_cast_000000000000000f: function(arg0, arg1) {
4514
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59806, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 59807, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4723
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 60557, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 60558, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4515
4724
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__14);
4516
4725
  return ret;
4517
4726
  },
4518
4727
  __wbindgen_cast_0000000000000010: function(arg0, arg1) {
4519
- // Cast intrinsic for `Closure(Closure { dtor_idx: 63059, function: Function { arguments: [], shim_idx: 63060, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4520
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________2_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__2_);
4728
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 60557, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 60558, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4729
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__15);
4521
4730
  return ret;
4522
4731
  },
4523
4732
  __wbindgen_cast_0000000000000011: function(arg0, arg1) {
4524
- // Cast intrinsic for `Closure(Closure { dtor_idx: 63435, function: Function { arguments: [], shim_idx: 63436, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4525
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________3_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__3_);
4733
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 63817, function: Function { arguments: [], shim_idx: 63818, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4734
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________2_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__2_);
4526
4735
  return ret;
4527
4736
  },
4528
4737
  __wbindgen_cast_0000000000000012: function(arg0, arg1) {
4529
- // Cast intrinsic for `Closure(Closure { dtor_idx: 63471, function: Function { arguments: [Externref], shim_idx: 63472, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4530
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output________1_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__1_);
4738
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64169, function: Function { arguments: [], shim_idx: 64170, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4739
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________3_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__3_);
4531
4740
  return ret;
4532
4741
  },
4533
4742
  __wbindgen_cast_0000000000000013: function(arg0, arg1) {
4534
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64908, function: Function { arguments: [Externref], shim_idx: 64909, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4535
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2_);
4743
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64205, function: Function { arguments: [Externref], shim_idx: 64206, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4744
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output________1_, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__1_);
4536
4745
  return ret;
4537
4746
  },
4538
4747
  __wbindgen_cast_0000000000000014: function(arg0, arg1) {
4539
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64908, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 64915, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4540
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___js_sys_d40b129ce13bfafb___Array__web_sys_4810301cc3ef8c1f___features__gen_ResizeObserver__ResizeObserver______true_);
4748
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65721, function: Function { arguments: [Externref], shim_idx: 65722, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4749
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2_);
4541
4750
  return ret;
4542
4751
  },
4543
4752
  __wbindgen_cast_0000000000000015: function(arg0, arg1) {
4544
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64908, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 64909, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4545
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__20);
4753
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65721, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 65728, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4754
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___js_sys_d40b129ce13bfafb___Array__web_sys_4810301cc3ef8c1f___features__gen_ResizeObserver__ResizeObserver______true_);
4546
4755
  return ret;
4547
4756
  },
4548
4757
  __wbindgen_cast_0000000000000016: function(arg0, arg1) {
4549
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64908, function: Function { arguments: [NamedExternref("Event")], shim_idx: 64909, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4758
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65721, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 65722, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4550
4759
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__21);
4551
4760
  return ret;
4552
4761
  },
4553
4762
  __wbindgen_cast_0000000000000017: function(arg0, arg1) {
4554
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64908, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 64909, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4763
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65721, function: Function { arguments: [NamedExternref("Event")], shim_idx: 65722, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4555
4764
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__22);
4556
4765
  return ret;
4557
4766
  },
4558
4767
  __wbindgen_cast_0000000000000018: function(arg0, arg1) {
4559
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64908, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 64909, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4768
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65721, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 65722, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4560
4769
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__23);
4561
4770
  return ret;
4562
4771
  },
4563
4772
  __wbindgen_cast_0000000000000019: function(arg0, arg1) {
4564
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64908, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 64909, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4773
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65721, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 65722, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4565
4774
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__24);
4566
4775
  return ret;
4567
4776
  },
4568
4777
  __wbindgen_cast_000000000000001a: function(arg0, arg1) {
4569
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64908, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 64909, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4778
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65721, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 65722, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4570
4779
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__25);
4571
4780
  return ret;
4572
4781
  },
4573
4782
  __wbindgen_cast_000000000000001b: function(arg0, arg1) {
4574
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64908, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 64909, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4783
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65721, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 65722, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4575
4784
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__26);
4576
4785
  return ret;
4577
4786
  },
4578
4787
  __wbindgen_cast_000000000000001c: function(arg0, arg1) {
4579
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64908, function: Function { arguments: [], shim_idx: 64923, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4788
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65721, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 65722, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4789
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__27);
4790
+ return ret;
4791
+ },
4792
+ __wbindgen_cast_000000000000001d: function(arg0, arg1) {
4793
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65721, function: Function { arguments: [], shim_idx: 65736, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4580
4794
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__4_);
4581
4795
  return ret;
4582
4796
  },
4583
- __wbindgen_cast_000000000000001d: function(arg0) {
4797
+ __wbindgen_cast_000000000000001e: function(arg0) {
4584
4798
  // Cast intrinsic for `F64 -> Externref`.
4585
4799
  const ret = arg0;
4586
4800
  return ret;
4587
4801
  },
4588
- __wbindgen_cast_000000000000001e: function(arg0) {
4802
+ __wbindgen_cast_000000000000001f: function(arg0) {
4589
4803
  // Cast intrinsic for `I64 -> Externref`.
4590
4804
  const ret = arg0;
4591
4805
  return ret;
4592
4806
  },
4593
- __wbindgen_cast_000000000000001f: function(arg0, arg1) {
4807
+ __wbindgen_cast_0000000000000020: function(arg0, arg1) {
4594
4808
  // Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
4595
4809
  const ret = getArrayU8FromWasm0(arg0, arg1);
4596
4810
  return ret;
4597
4811
  },
4598
- __wbindgen_cast_0000000000000020: function(arg0, arg1) {
4812
+ __wbindgen_cast_0000000000000021: function(arg0, arg1) {
4599
4813
  // Cast intrinsic for `Ref(String) -> Externref`.
4600
4814
  const ret = getStringFromWasm0(arg0, arg1);
4601
4815
  return ret;
4602
4816
  },
4603
- __wbindgen_cast_0000000000000021: function(arg0) {
4817
+ __wbindgen_cast_0000000000000022: function(arg0) {
4604
4818
  // Cast intrinsic for `U64 -> Externref`.
4605
4819
  const ret = BigInt.asUintN(64, arg0);
4606
4820
  return ret;
4607
4821
  },
4608
- __wbindgen_cast_0000000000000022: function(arg0, arg1) {
4822
+ __wbindgen_cast_0000000000000023: function(arg0, arg1) {
4609
4823
  var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
4610
4824
  wasm.__wbindgen_free(arg0, arg1 * 4, 4);
4611
4825
  // Cast intrinsic for `Vector(Externref) -> Externref`.
4612
4826
  const ret = v0;
4613
4827
  return ret;
4614
4828
  },
4615
- __wbindgen_cast_0000000000000023: function(arg0, arg1) {
4829
+ __wbindgen_cast_0000000000000024: function(arg0, arg1) {
4616
4830
  var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
4617
4831
  wasm.__wbindgen_free(arg0, arg1 * 4, 4);
4618
4832
  // Cast intrinsic for `Vector(NamedExternref("string")) -> Externref`.
4619
4833
  const ret = v0;
4620
4834
  return ret;
4621
4835
  },
4622
- __wbindgen_cast_0000000000000024: function(arg0, arg1) {
4836
+ __wbindgen_cast_0000000000000025: function(arg0, arg1) {
4623
4837
  var v0 = getArrayU8FromWasm0(arg0, arg1).slice();
4624
4838
  wasm.__wbindgen_free(arg0, arg1 * 1, 1);
4625
4839
  // Cast intrinsic for `Vector(U8) -> Externref`.
@@ -4980,16 +5194,20 @@ function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bin
4980
5194
  wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__4_(arg0, arg1, arg2);
4981
5195
  }
4982
5196
 
5197
+ function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true_(arg0, arg1, arg2) {
5198
+ wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true_(arg0, arg1, arg2);
5199
+ }
5200
+
4983
5201
  function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_MessageEvent__MessageEvent______true_(arg0, arg1, arg2) {
4984
5202
  wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_MessageEvent__MessageEvent______true_(arg0, arg1, arg2);
4985
5203
  }
4986
5204
 
4987
- function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_59f0ff3450764947___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2) {
4988
- wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_59f0ff3450764947___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2);
5205
+ function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_b8376d50153b9887___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2) {
5206
+ wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_b8376d50153b9887___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2);
4989
5207
  }
4990
5208
 
4991
- function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true_(arg0, arg1, arg2) {
4992
- wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true_(arg0, arg1, arg2);
5209
+ function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true__1_(arg0, arg1, arg2) {
5210
+ wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true__1_(arg0, arg1, arg2);
4993
5211
  }
4994
5212
 
4995
5213
  function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true_(arg0, arg1, arg2) {
@@ -5000,14 +5218,14 @@ function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_
5000
5218
  wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true_(arg0, arg1, arg2);
5001
5219
  }
5002
5220
 
5003
- function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__13(arg0, arg1, arg2) {
5004
- wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__13(arg0, arg1, arg2);
5005
- }
5006
-
5007
5221
  function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__14(arg0, arg1, arg2) {
5008
5222
  wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__14(arg0, arg1, arg2);
5009
5223
  }
5010
5224
 
5225
+ function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__15(arg0, arg1, arg2) {
5226
+ wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__15(arg0, arg1, arg2);
5227
+ }
5228
+
5011
5229
  function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__1_(arg0, arg1, arg2) {
5012
5230
  wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__1_(arg0, arg1, arg2);
5013
5231
  }
@@ -5016,10 +5234,6 @@ function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bin
5016
5234
  wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2_(arg0, arg1, arg2);
5017
5235
  }
5018
5236
 
5019
- function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__20(arg0, arg1, arg2) {
5020
- wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__20(arg0, arg1, arg2);
5021
- }
5022
-
5023
5237
  function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__21(arg0, arg1, arg2) {
5024
5238
  wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__21(arg0, arg1, arg2);
5025
5239
  }
@@ -5044,6 +5258,10 @@ function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bin
5044
5258
  wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__26(arg0, arg1, arg2);
5045
5259
  }
5046
5260
 
5261
+ function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__27(arg0, arg1, arg2) {
5262
+ wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__27(arg0, arg1, arg2);
5263
+ }
5264
+
5047
5265
  function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_(arg0, arg1, arg2) {
5048
5266
  const ret = wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_(arg0, arg1, arg2);
5049
5267
  if (ret[1]) {
@@ -5051,8 +5269,8 @@ function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bin
5051
5269
  }
5052
5270
  }
5053
5271
 
5054
- function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_59f0ff3450764947___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_(arg0, arg1, arg2) {
5055
- const ret = wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_59f0ff3450764947___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_(arg0, arg1, arg2);
5272
+ function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_b8376d50153b9887___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_(arg0, arg1, arg2) {
5273
+ const ret = wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_b8376d50153b9887___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_(arg0, arg1, arg2);
5056
5274
  if (ret[1]) {
5057
5275
  throw takeFromExternrefTable0(ret[0]);
5058
5276
  }
Binary file
@@ -29,6 +29,9 @@ export const __wbg_workercontext_free: (a: number, b: number) => void;
29
29
  export const builtin_module: (a: number, b: number, c: number) => [number, number, number, number];
30
30
  export const drop_context: (a: number) => void;
31
31
  export const is_super: (a: number) => number;
32
+ export const op_accept_friend_request: (a: number, b: number, c: number) => any;
33
+ export const op_block_user: (a: number, b: number, c: number) => any;
34
+ export const op_cancel_friend_request: (a: number, b: number, c: number) => any;
32
35
  export const op_change_realm: (a: number, b: number, c: number, d: number, e: number) => any;
33
36
  export const op_check_for_update: (a: number) => any;
34
37
  export const op_comms_recv_binary: (a: number) => any;
@@ -40,17 +43,24 @@ export const op_continue_running: (a: number) => number;
40
43
  export const op_copy_to_clipboard: (a: number, b: number, c: number) => any;
41
44
  export const op_crdt_recv_from_renderer: (a: number) => any;
42
45
  export const op_crdt_send_to_renderer: (a: number, b: any) => void;
46
+ export const op_delete_friend: (a: number, b: number, c: number) => any;
43
47
  export const op_emote: (a: number, b: number, c: number) => void;
44
48
  export const op_error: (a: number, b: number, c: number) => void;
45
49
  export const op_external_url: (a: number, b: number, c: number) => any;
46
50
  export const op_get_avatar_modifiers: (a: number) => any;
47
51
  export const op_get_bindings: (a: number) => any;
52
+ export const op_get_blocked_users: (a: number) => any;
48
53
  export const op_get_chat_stream: (a: number) => any;
49
54
  export const op_get_connected_players: (a: number) => any;
50
55
  export const op_get_current_login: (a: number) => [number, number];
56
+ export const op_get_friend_connectivity_stream: (a: number) => any;
57
+ export const op_get_friends: (a: number) => any;
58
+ export const op_get_friendship_event_stream: (a: number) => any;
51
59
  export const op_get_home_scene: (a: number) => any;
52
60
  export const op_get_hover_stream: (a: number) => any;
53
61
  export const op_get_mic_state: (a: number) => any;
62
+ export const op_get_mutual_friends: (a: number, b: number, c: number) => any;
63
+ export const op_get_online_friends: (a: number) => any;
54
64
  export const op_get_params: (a: number) => any;
55
65
  export const op_get_permanent_permissions: (a: number, b: number, c: number, d: number, e: number) => any;
56
66
  export const op_get_permission_request_stream: (a: number) => any;
@@ -61,7 +71,10 @@ export const op_get_player_data: (a: number, b: number, c: number) => any;
61
71
  export const op_get_players_in_scene: (a: number) => any;
62
72
  export const op_get_previous_login: (a: number) => any;
63
73
  export const op_get_profile_extras: (a: number) => any;
74
+ export const op_get_received_friend_requests: (a: number) => any;
64
75
  export const op_get_scene_loading_ui_stream: (a: number) => any;
76
+ export const op_get_sent_friend_requests: (a: number) => any;
77
+ export const op_get_social_initialized: (a: number) => any;
65
78
  export const op_get_system_action_stream: (a: number) => any;
66
79
  export const op_get_texture_size: (a: number, b: number, c: number) => any;
67
80
  export const op_get_user_data: (a: number) => any;
@@ -87,6 +100,8 @@ export const op_portable_spawn: (a: number, b: number, c: number, d: number, e:
87
100
  export const op_quit: (a: number) => void;
88
101
  export const op_read_chat_stream: (a: number, b: number) => any;
89
102
  export const op_read_file: (a: number, b: number, c: number) => any;
103
+ export const op_read_friend_connectivity_stream: (a: number, b: number) => any;
104
+ export const op_read_friendship_event_stream: (a: number, b: number) => any;
90
105
  export const op_read_hover_stream: (a: number, b: number) => any;
91
106
  export const op_read_permission_request_stream: (a: number, b: number) => any;
92
107
  export const op_read_permission_used_stream: (a: number, b: number) => any;
@@ -94,11 +109,13 @@ export const op_read_scene_loading_ui_stream: (a: number, b: number) => any;
94
109
  export const op_read_system_action_stream: (a: number, b: number) => any;
95
110
  export const op_read_voice_stream: (a: number, b: number) => any;
96
111
  export const op_realm_information: (a: number) => any;
112
+ export const op_reject_friend_request: (a: number, b: number, c: number) => any;
97
113
  export const op_scene_emote: (a: number, b: number, c: number, d: number) => any;
98
114
  export const op_scene_information: (a: number) => any;
99
115
  export const op_send_async: (a: number, b: number, c: number, d: number, e: number) => any;
100
116
  export const op_send_batch: (a: number) => any;
101
117
  export const op_send_chat: (a: number, b: number, c: number, d: number, e: number) => void;
118
+ export const op_send_friend_request: (a: number, b: number, c: number, d: number, e: number) => any;
102
119
  export const op_set_avatar: (a: number, b: any, c: any, d: number, e: any) => any;
103
120
  export const op_set_bindings: (a: number, b: any) => any;
104
121
  export const op_set_elapsed: (a: number, b: number) => void;
@@ -115,6 +132,7 @@ export const op_take_and_compare_snapshot: (a: number, b: number, c: number, d:
115
132
  export const op_teleport_to: (a: number, b: number, c: number) => any;
116
133
  export const op_testing_enabled: (a: number) => number;
117
134
  export const op_ui_focus: (a: number, b: number, c: number, d: number) => any;
135
+ export const op_unblock_user: (a: number, b: number, c: number) => any;
118
136
  export const op_unsubscribe: (a: number, b: number, c: number) => void;
119
137
  export const op_walk_player_to: (a: number, b: any, c: number, d: number) => any;
120
138
  export const op_webstorage_clear: (a: number) => void;
@@ -132,10 +150,11 @@ export const workercontext_get_source: (a: number) => any;
132
150
  export const gpu_cache_hash: () => [number, number];
133
151
  export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output________2_: (a: number, b: number) => void;
134
152
  export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output________3_: (a: number, b: number) => void;
153
+ export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent____Output_______: (a: number, b: number) => void;
135
154
  export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___: (a: number, b: number) => void;
136
155
  export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__f64__wasm_bindgen_c050fca1e6679df8___JsValue___Output_______: (a: number, b: number) => void;
137
- export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_59f0ff3450764947___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
138
- export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent____Output_______: (a: number, b: number) => void;
156
+ export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_b8376d50153b9887___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
157
+ export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent____Output________1_: (a: number, b: number) => void;
139
158
  export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
140
159
  export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_c050fca1e6679df8___JsValue____Output_______: (a: number, b: number) => void;
141
160
  export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________1_: (a: number, b: number) => void;
@@ -146,28 +165,29 @@ export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35ab
146
165
  export const wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______: (a: number, b: number) => void;
147
166
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___f64__wasm_bindgen_c050fca1e6679df8___JsValue______true_: (a: number, b: number, c: number, d: any) => void;
148
167
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_: (a: number, b: number, c: any) => [number, number];
149
- export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_59f0ff3450764947___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_: (a: number, b: number, c: any) => [number, number];
168
+ export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_b8376d50153b9887___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_: (a: number, b: number, c: any) => [number, number];
150
169
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___js_sys_d40b129ce13bfafb___Array__web_sys_4810301cc3ef8c1f___features__gen_ResizeObserver__ResizeObserver______true_: (a: number, b: number, c: any, d: any) => void;
151
170
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___js_sys_d40b129ce13bfafb___Function_fn_wasm_bindgen_c050fca1e6679df8___JsValue_____wasm_bindgen_c050fca1e6679df8___sys__Undefined___js_sys_d40b129ce13bfafb___Function_fn_wasm_bindgen_c050fca1e6679df8___JsValue_____wasm_bindgen_c050fca1e6679df8___sys__Undefined_______true_: (a: number, b: number, c: any, d: any) => void;
152
171
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__3_: (a: number, b: number, c: any) => void;
153
172
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__3__1: (a: number, b: number, c: any) => void;
154
173
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__4_: (a: number, b: number, c: any) => void;
155
- export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
156
- export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_59f0ff3450764947___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
157
174
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true_: (a: number, b: number, c: any) => void;
175
+ export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
176
+ export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_b8376d50153b9887___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
177
+ export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_CloseEvent__CloseEvent______true__1_: (a: number, b: number, c: any) => void;
158
178
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true_: (a: number, b: number, c: any) => void;
159
179
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true_: (a: number, b: number, c: any) => void;
160
- export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__13: (a: number, b: number, c: any) => void;
161
180
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__14: (a: number, b: number, c: any) => void;
181
+ export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___web_sys_4810301cc3ef8c1f___features__gen_InputEvent__InputEvent______true__15: (a: number, b: number, c: any) => void;
162
182
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__1_: (a: number, b: number, c: any) => void;
163
183
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2_: (a: number, b: number, c: any) => void;
164
- export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__20: (a: number, b: number, c: any) => void;
165
184
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__21: (a: number, b: number, c: any) => void;
166
185
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__22: (a: number, b: number, c: any) => void;
167
186
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__23: (a: number, b: number, c: any) => void;
168
187
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__24: (a: number, b: number, c: any) => void;
169
188
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__25: (a: number, b: number, c: any) => void;
170
189
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__26: (a: number, b: number, c: any) => void;
190
+ export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___wasm_bindgen_c050fca1e6679df8___JsValue______true__2__27: (a: number, b: number, c: any) => void;
171
191
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true_: (a: number, b: number) => void;
172
192
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__1_: (a: number, b: number) => void;
173
193
  export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__2_: (a: number, b: number) => void;