@dcl/protocol 1.0.0-2611886570.commit-2d16f51 → 1.0.0-2611981047.commit-6f422a3

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": "@dcl/protocol",
3
- "version": "1.0.0-2611886570.commit-2d16f51",
3
+ "version": "1.0.0-2611981047.commit-6f422a3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -17,5 +17,5 @@
17
17
  "renderer-protocol",
18
18
  "ecs"
19
19
  ],
20
- "commit": "2d16f516b00c4c00e5634de958fa9ecaffa44e78"
20
+ "commit": "6f422a379f40a4244c4be0bb2362bc4b0a264a09"
21
21
  }
@@ -1,15 +0,0 @@
1
- syntax = "proto3";
2
-
3
- import "common/id.proto";
4
- option (ecs_component_id) = 1070;
5
- import "common/Vector3.proto";
6
-
7
- message PBAvatarModifierArea {
8
- Vector3 area = 1;
9
- repeated string exclude_ids = 2;
10
- repeated Modifier modifiers = 3;
11
- enum Modifier {
12
- HIDE_AVATARS = 0;
13
- DISABLE_PASSPORTS = 1;
14
- }
15
- }
@@ -1,14 +0,0 @@
1
- syntax = "proto3";
2
-
3
- import "common/id.proto";
4
- option (ecs_component_id) = 1071;
5
- import "common/Vector3.proto";
6
-
7
- message PBCameraModeArea {
8
- Vector3 area = 1;
9
- CameraMode mode = 2;
10
- enum CameraMode {
11
- FIRST_PERSON = 0;
12
- THIRD_PERSON = 1;
13
- }
14
- }