@hytopia.com/server-protocol 1.3.32 → 1.3.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hytopia.com/server-protocol",
3
- "version": "1.3.32",
3
+ "version": "1.3.34",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -10,6 +10,7 @@ export type SceneUISchema = {
10
10
  rm?: boolean; // remove/removed
11
11
  s?: object; // state
12
12
  t?: string; // template id
13
+ v?: number; // view distance
13
14
  }
14
15
 
15
16
  export const sceneUISchema: JSONSchemaType<SceneUISchema> = {
@@ -22,6 +23,7 @@ export const sceneUISchema: JSONSchemaType<SceneUISchema> = {
22
23
  rm: { type: 'boolean', nullable: true },
23
24
  s: { type: 'object', nullable: true },
24
25
  t: { type: 'string', nullable: true },
26
+ v: { type: 'number', nullable: true },
25
27
  },
26
28
  required: ['i'],
27
29
  additionalProperties: false,