@hytopia.com/server-protocol 1.3.69 → 1.3.70

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schemas/World.ts +0 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hytopia.com/server-protocol",
3
- "version": "1.3.69",
3
+ "version": "1.3.70",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
package/schemas/World.ts CHANGED
@@ -11,7 +11,6 @@ export type WorldSchema = {
11
11
  dc?: RgbColorSchema; // directional light color
12
12
  di?: number; // directional light intensity
13
13
  dp?: VectorSchema; // directional light position
14
- j?: boolean; // joined
15
14
  n?: string; // name
16
15
  s?: string; // skyboxUri
17
16
  t?: number; // timestep (seconds)
@@ -26,7 +25,6 @@ export const worldSchema: JSONSchemaType<WorldSchema> = {
26
25
  dc: { ...rgbColorSchema, nullable: true },
27
26
  di: { type: 'number', nullable: true },
28
27
  dp: { ...vectorSchema, nullable: true },
29
- j: { type: 'boolean', nullable: true },
30
28
  n: { type: 'string', nullable: true },
31
29
  s: { type: 'string', nullable: true },
32
30
  t: { type: 'number', nullable: true },