@dcl-regenesislabs/bevy-explorer-web 0.1.0-25464088416.commit-856193b → 0.1.0-25668365780.commit-55d24b2

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-25464088416.commit-856193b"
1
+ PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-25668365780.commit-55d24b2"
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-25464088416.commit-856193b";</script>
414
+ <script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-25668365780.commit-55d24b2";</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-25464088416.commit-856193b",
3
+ "version": "0.1.0-25668365780.commit-55d24b2",
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-25464088416.commit-856193b",
12
- "commit": "856193b94b4372becf0a4da38b60abd54bf19416"
11
+ "homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-25668365780.commit-55d24b2",
12
+ "commit": "55d24b29212b594ef54732f6041dcc1b20c20beb"
13
13
  }
package/pkg/manifest.json CHANGED
@@ -1 +1 @@
1
- {"wasmSize":108394748}
1
+ {"wasmSize":108462968}
@@ -108,6 +108,8 @@ export function op_accept_friend_request(state: WorkerContext, address: string):
108
108
 
109
109
  export function op_block_user(state: WorkerContext, address: string): Promise<void>;
110
110
 
111
+ export function op_camera_fov(op_state: WorkerContext): Promise<number>;
112
+
111
113
  export function op_cancel_friend_request(state: WorkerContext, address: string): Promise<void>;
112
114
 
113
115
  export function op_change_realm(state: WorkerContext, realm: string, message?: string | null): Promise<boolean>;
@@ -188,6 +190,8 @@ export function op_get_previous_login(state: WorkerContext): Promise<string | un
188
190
 
189
191
  export function op_get_profile_extras(state: WorkerContext): Promise<any>;
190
192
 
193
+ export function op_get_proximity_stream(state: WorkerContext): Promise<number>;
194
+
191
195
  export function op_get_received_friend_requests(state: WorkerContext): Promise<any>;
192
196
 
193
197
  export function op_get_scene_loading_ui_stream(state: WorkerContext): Promise<number>;
@@ -256,6 +260,8 @@ export function op_read_permission_request_stream(state: WorkerContext, rid: num
256
260
 
257
261
  export function op_read_permission_used_stream(state: WorkerContext, rid: number): Promise<any>;
258
262
 
263
+ export function op_read_proximity_stream(state: WorkerContext, rid: number): Promise<any>;
264
+
259
265
  export function op_read_scene_loading_ui_stream(state: WorkerContext, rid: number): Promise<any>;
260
266
 
261
267
  export function op_read_system_action_stream(state: WorkerContext, rid: number): Promise<any>;
@@ -370,6 +376,7 @@ export interface InitOutput {
370
376
  readonly is_super: (a: number) => number;
371
377
  readonly op_accept_friend_request: (a: number, b: number, c: number) => any;
372
378
  readonly op_block_user: (a: number, b: number, c: number) => any;
379
+ readonly op_camera_fov: (a: number) => any;
373
380
  readonly op_cancel_friend_request: (a: number, b: number, c: number) => any;
374
381
  readonly op_change_realm: (a: number, b: number, c: number, d: number, e: number) => any;
375
382
  readonly op_check_for_update: (a: number) => any;
@@ -410,6 +417,7 @@ export interface InitOutput {
410
417
  readonly op_get_players_in_scene: (a: number) => any;
411
418
  readonly op_get_previous_login: (a: number) => any;
412
419
  readonly op_get_profile_extras: (a: number) => any;
420
+ readonly op_get_proximity_stream: (a: number) => any;
413
421
  readonly op_get_received_friend_requests: (a: number) => any;
414
422
  readonly op_get_scene_loading_ui_stream: (a: number) => any;
415
423
  readonly op_get_sent_friend_requests: (a: number) => any;
@@ -444,6 +452,7 @@ export interface InitOutput {
444
452
  readonly op_read_hover_stream: (a: number, b: number) => any;
445
453
  readonly op_read_permission_request_stream: (a: number, b: number) => any;
446
454
  readonly op_read_permission_used_stream: (a: number, b: number) => any;
455
+ readonly op_read_proximity_stream: (a: number, b: number) => any;
447
456
  readonly op_read_scene_loading_ui_stream: (a: number, b: number) => any;
448
457
  readonly op_read_system_action_stream: (a: number, b: number) => any;
449
458
  readonly op_read_voice_stream: (a: number, b: number) => any;
@@ -392,6 +392,16 @@ export function op_block_user(state, address) {
392
392
  return ret;
393
393
  }
394
394
 
395
+ /**
396
+ * @param {WorkerContext} op_state
397
+ * @returns {Promise<number>}
398
+ */
399
+ export function op_camera_fov(op_state) {
400
+ _assertClass(op_state, WorkerContext);
401
+ const ret = wasm.op_camera_fov(op_state.__wbg_ptr);
402
+ return ret;
403
+ }
404
+
395
405
  /**
396
406
  * @param {WorkerContext} state
397
407
  * @param {string} address
@@ -849,6 +859,16 @@ export function op_get_profile_extras(state) {
849
859
  return ret;
850
860
  }
851
861
 
862
+ /**
863
+ * @param {WorkerContext} state
864
+ * @returns {Promise<number>}
865
+ */
866
+ export function op_get_proximity_stream(state) {
867
+ _assertClass(state, WorkerContext);
868
+ const ret = wasm.op_get_proximity_stream(state.__wbg_ptr);
869
+ return ret;
870
+ }
871
+
852
872
  /**
853
873
  * @param {WorkerContext} state
854
874
  * @returns {Promise<any>}
@@ -1217,6 +1237,17 @@ export function op_read_permission_used_stream(state, rid) {
1217
1237
  return ret;
1218
1238
  }
1219
1239
 
1240
+ /**
1241
+ * @param {WorkerContext} state
1242
+ * @param {number} rid
1243
+ * @returns {Promise<any>}
1244
+ */
1245
+ export function op_read_proximity_stream(state, rid) {
1246
+ _assertClass(state, WorkerContext);
1247
+ const ret = wasm.op_read_proximity_stream(state.__wbg_ptr, rid);
1248
+ return ret;
1249
+ }
1250
+
1220
1251
  /**
1221
1252
  * @param {WorkerContext} state
1222
1253
  * @param {number} rid
@@ -4655,27 +4686,27 @@ function __wbg_get_imports(memory) {
4655
4686
  return ret;
4656
4687
  },
4657
4688
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
4658
- // Cast intrinsic for `Closure(Closure { dtor_idx: 128752, function: Function { arguments: [Externref], shim_idx: 128753, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4689
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 128873, function: Function { arguments: [Externref], shim_idx: 128874, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4659
4690
  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_);
4660
4691
  return ret;
4661
4692
  },
4662
4693
  __wbindgen_cast_0000000000000003: function(arg0, arg1) {
4663
- // Cast intrinsic for `Closure(Closure { dtor_idx: 128752, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 128753, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4694
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 128873, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 128874, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4664
4695
  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__2);
4665
4696
  return ret;
4666
4697
  },
4667
4698
  __wbindgen_cast_0000000000000004: function(arg0, arg1) {
4668
- // Cast intrinsic for `Closure(Closure { dtor_idx: 136022, function: Function { arguments: [Externref], shim_idx: 136023, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4699
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 136143, function: Function { arguments: [Externref], shim_idx: 136144, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4669
4700
  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_);
4670
4701
  return ret;
4671
4702
  },
4672
4703
  __wbindgen_cast_0000000000000005: function(arg0, arg1) {
4673
- // Cast intrinsic for `Closure(Closure { dtor_idx: 144122, function: Function { arguments: [Externref], shim_idx: 144123, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4704
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 144243, function: Function { arguments: [Externref], shim_idx: 144244, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4674
4705
  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_);
4675
4706
  return ret;
4676
4707
  },
4677
4708
  __wbindgen_cast_0000000000000006: function(arg0, arg1) {
4678
- // Cast intrinsic for `Closure(Closure { dtor_idx: 144122, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 144125, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4709
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 144243, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 144246, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4679
4710
  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_);
4680
4711
  return ret;
4681
4712
  },
@@ -4685,112 +4716,112 @@ function __wbg_get_imports(memory) {
4685
4716
  return ret;
4686
4717
  },
4687
4718
  __wbindgen_cast_0000000000000008: function(arg0, arg1) {
4688
- // Cast intrinsic for `Closure(Closure { dtor_idx: 47628, function: Function { arguments: [Externref], shim_idx: 47629, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4719
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 47735, function: Function { arguments: [Externref], shim_idx: 47736, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4689
4720
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_fc730db1f7d6a863___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_fc730db1f7d6a863___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_c050fca1e6679df8___JsError___true_);
4690
4721
  return ret;
4691
4722
  },
4692
4723
  __wbindgen_cast_0000000000000009: function(arg0, arg1) {
4693
- // Cast intrinsic for `Closure(Closure { dtor_idx: 47628, function: Function { arguments: [Externref], shim_idx: 47631, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
4724
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 47735, function: Function { arguments: [Externref], shim_idx: 47738, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
4694
4725
  const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_fc730db1f7d6a863___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke___comms_fc730db1f7d6a863___livekit__web__room_event__RoomEvent______true_);
4695
4726
  return ret;
4696
4727
  },
4697
4728
  __wbindgen_cast_000000000000000a: function(arg0, arg1) {
4698
- // Cast intrinsic for `Closure(Closure { dtor_idx: 57628, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 57629, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4729
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 57749, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 57750, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4699
4730
  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_);
4700
4731
  return ret;
4701
4732
  },
4702
4733
  __wbindgen_cast_000000000000000b: function(arg0, arg1) {
4703
- // Cast intrinsic for `Closure(Closure { dtor_idx: 57734, function: Function { arguments: [], shim_idx: 57735, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4734
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 57855, function: Function { arguments: [], shim_idx: 57856, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4704
4735
  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_);
4705
4736
  return ret;
4706
4737
  },
4707
4738
  __wbindgen_cast_000000000000000c: function(arg0, arg1) {
4708
- // Cast intrinsic for `Closure(Closure { dtor_idx: 57737, function: Function { arguments: [Externref], shim_idx: 57738, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4739
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 57858, function: Function { arguments: [Externref], shim_idx: 57859, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4709
4740
  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_);
4710
4741
  return ret;
4711
4742
  },
4712
4743
  __wbindgen_cast_000000000000000d: function(arg0, arg1) {
4713
- // Cast intrinsic for `Closure(Closure { dtor_idx: 61098, function: Function { arguments: [], shim_idx: 61099, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4744
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 61219, function: Function { arguments: [], shim_idx: 61220, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4714
4745
  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_);
4715
4746
  return ret;
4716
4747
  },
4717
4748
  __wbindgen_cast_000000000000000e: function(arg0, arg1) {
4718
- // Cast intrinsic for `Closure(Closure { dtor_idx: 61718, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 61719, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4749
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 61839, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 61840, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4719
4750
  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_);
4720
4751
  return ret;
4721
4752
  },
4722
4753
  __wbindgen_cast_000000000000000f: function(arg0, arg1) {
4723
- // Cast intrinsic for `Closure(Closure { dtor_idx: 61718, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 61719, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4754
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 61839, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 61840, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4724
4755
  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);
4725
4756
  return ret;
4726
4757
  },
4727
4758
  __wbindgen_cast_0000000000000010: function(arg0, arg1) {
4728
- // Cast intrinsic for `Closure(Closure { dtor_idx: 61718, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 61719, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4759
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 61839, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 61840, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4729
4760
  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);
4730
4761
  return ret;
4731
4762
  },
4732
4763
  __wbindgen_cast_0000000000000011: function(arg0, arg1) {
4733
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64985, function: Function { arguments: [], shim_idx: 64986, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4764
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65106, function: Function { arguments: [], shim_idx: 65107, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4734
4765
  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_);
4735
4766
  return ret;
4736
4767
  },
4737
4768
  __wbindgen_cast_0000000000000012: function(arg0, arg1) {
4738
- // Cast intrinsic for `Closure(Closure { dtor_idx: 65337, function: Function { arguments: [], shim_idx: 65338, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4769
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65458, function: Function { arguments: [], shim_idx: 65459, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4739
4770
  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_);
4740
4771
  return ret;
4741
4772
  },
4742
4773
  __wbindgen_cast_0000000000000013: function(arg0, arg1) {
4743
- // Cast intrinsic for `Closure(Closure { dtor_idx: 65373, function: Function { arguments: [Externref], shim_idx: 65374, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4774
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 65494, function: Function { arguments: [Externref], shim_idx: 65495, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4744
4775
  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_);
4745
4776
  return ret;
4746
4777
  },
4747
4778
  __wbindgen_cast_0000000000000014: function(arg0, arg1) {
4748
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66905, function: Function { arguments: [Externref], shim_idx: 66906, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4779
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 67026, function: Function { arguments: [Externref], shim_idx: 67027, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4749
4780
  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_);
4750
4781
  return ret;
4751
4782
  },
4752
4783
  __wbindgen_cast_0000000000000015: function(arg0, arg1) {
4753
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66905, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 66912, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4784
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 67026, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 67033, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4754
4785
  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_);
4755
4786
  return ret;
4756
4787
  },
4757
4788
  __wbindgen_cast_0000000000000016: function(arg0, arg1) {
4758
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66905, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 66906, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4789
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 67026, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 67027, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4759
4790
  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);
4760
4791
  return ret;
4761
4792
  },
4762
4793
  __wbindgen_cast_0000000000000017: function(arg0, arg1) {
4763
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66905, function: Function { arguments: [NamedExternref("Event")], shim_idx: 66906, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4794
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 67026, function: Function { arguments: [NamedExternref("Event")], shim_idx: 67027, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4764
4795
  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);
4765
4796
  return ret;
4766
4797
  },
4767
4798
  __wbindgen_cast_0000000000000018: function(arg0, arg1) {
4768
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66905, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 66906, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4799
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 67026, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 67027, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4769
4800
  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);
4770
4801
  return ret;
4771
4802
  },
4772
4803
  __wbindgen_cast_0000000000000019: function(arg0, arg1) {
4773
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66905, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 66906, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4804
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 67026, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 67027, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4774
4805
  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);
4775
4806
  return ret;
4776
4807
  },
4777
4808
  __wbindgen_cast_000000000000001a: function(arg0, arg1) {
4778
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66905, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 66906, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4809
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 67026, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 67027, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4779
4810
  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);
4780
4811
  return ret;
4781
4812
  },
4782
4813
  __wbindgen_cast_000000000000001b: function(arg0, arg1) {
4783
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66905, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 66906, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4814
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 67026, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 67027, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4784
4815
  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);
4785
4816
  return ret;
4786
4817
  },
4787
4818
  __wbindgen_cast_000000000000001c: function(arg0, arg1) {
4788
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66905, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 66906, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4819
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 67026, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 67027, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4789
4820
  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
4821
  return ret;
4791
4822
  },
4792
4823
  __wbindgen_cast_000000000000001d: function(arg0, arg1) {
4793
- // Cast intrinsic for `Closure(Closure { dtor_idx: 66905, function: Function { arguments: [], shim_idx: 66920, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4824
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 67026, function: Function { arguments: [], shim_idx: 67041, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4794
4825
  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_);
4795
4826
  return ret;
4796
4827
  },
Binary file
@@ -31,6 +31,7 @@ export const drop_context: (a: number) => void;
31
31
  export const is_super: (a: number) => number;
32
32
  export const op_accept_friend_request: (a: number, b: number, c: number) => any;
33
33
  export const op_block_user: (a: number, b: number, c: number) => any;
34
+ export const op_camera_fov: (a: number) => any;
34
35
  export const op_cancel_friend_request: (a: number, b: number, c: number) => any;
35
36
  export const op_change_realm: (a: number, b: number, c: number, d: number, e: number) => any;
36
37
  export const op_check_for_update: (a: number) => any;
@@ -71,6 +72,7 @@ export const op_get_player_data: (a: number, b: number, c: number) => any;
71
72
  export const op_get_players_in_scene: (a: number) => any;
72
73
  export const op_get_previous_login: (a: number) => any;
73
74
  export const op_get_profile_extras: (a: number) => any;
75
+ export const op_get_proximity_stream: (a: number) => any;
74
76
  export const op_get_received_friend_requests: (a: number) => any;
75
77
  export const op_get_scene_loading_ui_stream: (a: number) => any;
76
78
  export const op_get_sent_friend_requests: (a: number) => any;
@@ -105,6 +107,7 @@ export const op_read_friendship_event_stream: (a: number, b: number) => any;
105
107
  export const op_read_hover_stream: (a: number, b: number) => any;
106
108
  export const op_read_permission_request_stream: (a: number, b: number) => any;
107
109
  export const op_read_permission_used_stream: (a: number, b: number) => any;
110
+ export const op_read_proximity_stream: (a: number, b: number) => any;
108
111
  export const op_read_scene_loading_ui_stream: (a: number, b: number) => any;
109
112
  export const op_read_system_action_stream: (a: number, b: number) => any;
110
113
  export const op_read_voice_stream: (a: number, b: number) => any;