@dcl/protocol 1.0.0-2650288651.commit-9dc170a → 1.0.0-2689188518.commit-e68d82c

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.
@@ -8,6 +8,5 @@ message PBAudioSource {
8
8
  float volume = 2;
9
9
  bool loop = 3;
10
10
  float pitch = 4;
11
- int32 played_at_timestamp = 5;
12
- string audio_clip_url = 6;
11
+ string audio_clip_url = 5;
13
12
  }
@@ -0,0 +1,9 @@
1
+ syntax = "proto3";
2
+
3
+ import "common/id.proto";
4
+ option (ecs_component_id) = 1073;
5
+
6
+ message PBAvatarAttach {
7
+ string avatar_id = 1;
8
+ int32 anchor_point_id = 2;
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/protocol",
3
- "version": "1.0.0-2650288651.commit-9dc170a",
3
+ "version": "1.0.0-2689188518.commit-e68d82c",
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": "9dc170a09cd6853aee523da36ea7948c1f77de6a"
20
+ "commit": "e68d82c07973dc2e797ee473eaa04023bf27966a"
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
  }