@dcl/protocol 1.0.0-2650329299.commit-5b35da7 → 1.0.0-2671957171.commit-72389ab

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-2650329299.commit-5b35da7",
3
+ "version": "1.0.0-2671957171.commit-72389ab",
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": "5b35da78677ed4d50b4edaab29e6bc7a24c3253f"
20
+ "commit": "72389aba6bafefa2197f8ac10d0234f3a3ffadc5"
21
21
  }
@@ -7,9 +7,18 @@ message CRDTManyMessages {
7
7
 
8
8
  message CRDTResponse {}
9
9
 
10
- message CRDTStreamRequest {}
10
+ message PullCRDTRequest {
11
+ string sceneId = 1;
12
+ }
13
+
14
+ // CRDTStreamRequest is deprecated
15
+ message CRDTStreamRequest {
16
+ option deprecated = true;
17
+ }
11
18
 
12
19
  service CRDTService {
13
20
  rpc SendCrdt(CRDTManyMessages) returns (CRDTResponse){}
21
+ rpc PullCrdt(PullCRDTRequest) returns (CRDTManyMessages) {}
22
+ // CrdtNotificationStream is deprecated
14
23
  rpc CrdtNotificationStream(CRDTStreamRequest) returns (stream CRDTManyMessages) {}
15
24
  }