@dcl/protocol 1.0.0-2840843014.commit-fbdf8c1 → 1.0.0-2861674650.commit-28abb06
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-
|
|
3
|
+
"version": "1.0.0-2861674650.commit-28abb06",
|
|
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": "
|
|
20
|
+
"commit": "28abb06ea925fe30065fde6bb29a1bfc833c66ac"
|
|
21
21
|
}
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
syntax = "proto3";
|
|
2
2
|
|
|
3
3
|
message CRDTManyMessages {
|
|
4
|
-
string
|
|
4
|
+
string scene_id = 1;
|
|
5
5
|
bytes payload = 2;
|
|
6
|
+
int32 scene_number = 3;
|
|
6
7
|
}
|
|
7
8
|
|
|
8
9
|
message CRDTResponse {}
|
|
9
10
|
|
|
10
11
|
message PullCRDTRequest {
|
|
11
|
-
string
|
|
12
|
+
string scene_id = 1;
|
|
13
|
+
int32 scene_number = 3;
|
|
12
14
|
}
|
|
13
15
|
|
|
14
16
|
// CRDTStreamRequest is deprecated
|