@dcl/protocol 1.0.0-3146779852.commit-e3c1df0 → 1.0.0-3175139283.commit-c671437

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.
@@ -0,0 +1,12 @@
1
+ syntax = "proto3";
2
+
3
+ import "common/id.proto";
4
+ option (ecs_component_id) = 1041;
5
+
6
+ message PBGltfContainer {
7
+ // which file to load
8
+ string src = 1;
9
+
10
+ // SDK7xx which node to load
11
+ // SDK7xx optional string scene_name = 2;
12
+ }
@@ -54,6 +54,7 @@ message ProfileResponse {
54
54
 
55
55
  message Chat {
56
56
  string message = 1;
57
+ double timestamp = 2;
57
58
  }
58
59
 
59
60
  message Scene {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/protocol",
3
- "version": "1.0.0-3146779852.commit-e3c1df0",
3
+ "version": "1.0.0-3175139283.commit-c671437",
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": "e3c1df0e8ad4a8b0960562f085127b87917b5f39"
21
+ "commit": "c671437d26d52c278057717a38d468755cd5dd9e"
22
22
  }
@@ -1,14 +0,0 @@
1
- syntax = "proto3";
2
-
3
- import "common/id.proto";
4
- option (ecs_component_id) = 1041;
5
-
6
- message PBGLTFShape {
7
- // @deprecated use MeshCollider instead https://github.com/decentraland/sdk/issues/366
8
- optional bool with_collisions = 1; // default=true
9
- // @deprecated use MeshCollider instead https://github.com/decentraland/sdk/issues/366
10
- optional bool is_pointer_blocker = 2; // default=true
11
- // @deprecated use HiddenComponent instead https://github.com/decentraland/sdk/issues/353
12
- optional bool visible = 3; // default=true
13
- string src = 4;
14
- }