@dcl/protocol 1.0.0-3040169427.commit-643454e → 1.0.0-3055298061.commit-653f46e

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.
@@ -24,4 +24,8 @@ message PBAvatarShape {
24
24
  * "urn:decentraland:off-chain:base-avatars:bun_shoes"]
25
25
  */
26
26
  repeated string wearables = 10;
27
+ /**
28
+ * default = []
29
+ */
30
+ repeated string emotes = 11;
27
31
  }
@@ -0,0 +1,42 @@
1
+ syntax = "proto3";
2
+
3
+ package protocol.comms.v3;
4
+
5
+ message Position3DMessage {
6
+ double x = 1;
7
+ double y = 2;
8
+ double z = 3;
9
+ }
10
+
11
+ message HeartbeatMessage {
12
+ Position3DMessage position = 1;
13
+ }
14
+
15
+ message IslandChangedMessage {
16
+ string island_id = 1;
17
+ string conn_str = 2;
18
+ optional string from_island_id = 3;
19
+ map<string, Position3DMessage> peers = 4;
20
+ }
21
+
22
+ message LeftIslandMessage {
23
+ string island_id = 1;
24
+ string peer_id = 2;
25
+ }
26
+
27
+ message JoinIslandMessage {
28
+ string island_id = 1;
29
+ string peer_id = 2;
30
+ }
31
+
32
+ message IslandData {
33
+ string id = 1;
34
+ repeated string peers = 2;
35
+ uint32 maxPeers = 3;
36
+ Position3DMessage center = 4;
37
+ double radius = 5;
38
+ }
39
+
40
+ message IslandStatusMessage {
41
+ repeated IslandData data = 1;
42
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/protocol",
3
- "version": "1.0.0-3040169427.commit-643454e",
3
+ "version": "1.0.0-3055298061.commit-653f46e",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -18,5 +18,5 @@
18
18
  "ecs",
19
19
  "bff"
20
20
  ],
21
- "commit": "643454eef3a7d3a3a0239440e05f1413da9e9701"
21
+ "commit": "653f46e07142fe17b4ac35efa2f1e18fe75aa76e"
22
22
  }
@@ -288,6 +288,8 @@ message PB_AvatarShape {
288
288
 
289
289
  string expressionTriggerId = 12;
290
290
  uint64 expressionTriggerTimestamp = 14;
291
+
292
+ repeated string emotes = 15;
291
293
  }
292
294
 
293
295
  message PB_Wearable {