@dcl/protocol 1.0.0-3069704311.commit-bc08817 → 1.0.0-3069963250.commit-85ff482

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.
@@ -56,6 +56,14 @@ message WsSignedChallenge {
56
56
  string auth_chain_json = 1;
57
57
  }
58
58
 
59
+ /**
60
+ * This is the first message sent by the clients, it us used to identify the client
61
+ * in the server.
62
+ */
63
+ message WsIdentification {
64
+ string address = 1;
65
+ }
66
+
59
67
  message WsPacket {
60
68
  oneof message {
61
69
  // direction: server->client
@@ -70,5 +78,7 @@ message WsPacket {
70
78
  WsSignedChallenge signed_challenge_for_server = 5;
71
79
  // direction: server->client
72
80
  WsPeerLeave peer_leave_message = 6;
81
+ // direction: server->client
82
+ WsIdentification peer_identification = 7;
73
83
  }
74
84
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/protocol",
3
- "version": "1.0.0-3069704311.commit-bc08817",
3
+ "version": "1.0.0-3069963250.commit-85ff482",
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": "bc08817e4276f32e5879fc939f41f2430db3c4c4"
21
+ "commit": "85ff482a573d0b52fc981bc3e467b8133ab6dda3"
22
22
  }