@dcl/protocol 1.0.0-2611981047.commit-6f422a3 → 1.0.0-2624200185.commit-c8884fe

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.
@@ -116,7 +116,9 @@ message ManyEntityAction {
116
116
  repeated EntityAction actions = 1;
117
117
  }
118
118
 
119
- message SendBatchResponse {}
119
+ message SendBatchResponse {
120
+ repeated EventData events = 1;
121
+ }
120
122
 
121
123
  message UnsubscribeRequest {
122
124
  string event_id = 1;
@@ -171,14 +173,8 @@ message EventData {
171
173
  optional RotationChangedPayload rotation_changed = 4;
172
174
  }
173
175
 
174
- message PullEventsRequest {}
175
- message PullEventsResponse {
176
- repeated EventData events = 1;
177
- }
178
-
179
176
  service EngineAPIService {
180
177
  rpc SendBatch(ManyEntityAction) returns (SendBatchResponse) {}
181
178
  rpc Subscribe(SubscribeRequest) returns (SubscribeResponse) {}
182
179
  rpc Unsubscribe(UnsubscribeRequest) returns (UnsubscribeResponse) {}
183
- rpc PullEvents(PullEventsRequest) returns (PullEventsResponse) {}
184
180
  }
@@ -5,14 +5,16 @@ message ContentMapping {
5
5
  string hash = 2;
6
6
  }
7
7
 
8
+ message MinimalRunnableEntity {
9
+ repeated ContentMapping content = 1;
10
+ string metadata_json = 2;
11
+ }
12
+
8
13
  message BootstrapDataResponse {
9
- string scene_id = 1;
10
- string name = 2;
11
- string main = 3;
14
+ string id = 1;
12
15
  string base_url = 4;
16
+ MinimalRunnableEntity entity = 2;
13
17
  bool use_f_p_s_throttling = 5;
14
- repeated ContentMapping mappings = 6;
15
- string json_payload = 7;
16
18
  }
17
19
 
18
20
  message PreviewModeResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/protocol",
3
- "version": "1.0.0-2611981047.commit-6f422a3",
3
+ "version": "1.0.0-2624200185.commit-c8884fe",
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": "6f422a379f40a4244c4be0bb2362bc4b0a264a09"
20
+ "commit": "c8884fe1f93f5205f4376c61245e58ddbf2df9e2"
21
21
  }