@dcl/protocol 1.0.0-18103449748.commit-258fabc → 1.0.0-18103584382.commit-cb75aeb

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-18103449748.commit-258fabc",
3
+ "version": "1.0.0-18103584382.commit-cb75aeb",
4
4
  "description": "",
5
5
  "repository": "decentraland/protocol.git",
6
6
  "homepage": "https://github.com/decentraland/protocol#readme",
@@ -13,7 +13,7 @@
13
13
  "test": "./scripts/check-proto-compabitility.sh"
14
14
  },
15
15
  "devDependencies": {
16
- "@protobuf-ts/protoc": "^2.8.1",
16
+ "@protobuf-ts/protoc": "^2.11.0",
17
17
  "proto-compatibility-tool": "^1.1.2-20220925163655.commit-25bd040",
18
18
  "typescript": "^5.0.4"
19
19
  },
@@ -30,5 +30,5 @@
30
30
  "out-js",
31
31
  "public"
32
32
  ],
33
- "commit": "258fabc1584701e63f129af3ca9895960305f703"
33
+ "commit": "cb75aeb2c14826171484036773cee2f0f5e6fdea"
34
34
  }
@@ -55,10 +55,11 @@ message Movement {
55
55
  bool is_long_jump = 12;
56
56
  bool is_long_fall = 13;
57
57
  bool is_falling = 14;
58
-
59
58
  bool is_stunned = 15;
60
-
61
59
  float rotation_y = 16;
60
+ // interpolation
61
+ bool is_instant = 17;
62
+ bool is_emoting = 18;
62
63
  }
63
64
 
64
65
  message MovementCompressed {
@@ -69,6 +70,7 @@ message MovementCompressed {
69
70
  message PlayerEmote {
70
71
  uint32 incremental_id = 1;
71
72
  string urn = 2;
73
+ float timestamp = 3;
72
74
  }
73
75
 
74
76
  message SceneEmote {
@@ -101,6 +103,10 @@ message ProfileResponse {
101
103
  message Chat {
102
104
  string message = 1;
103
105
  double timestamp = 2;
106
+
107
+ // Extension: optional forwarded_from to identify the original sender when
108
+ // messages are forwarded through an SFU
109
+ optional string forwarded_from = 3;
104
110
  }
105
111
 
106
112
  message Scene {
@@ -25,4 +25,4 @@ message PBLightSource {
25
25
  optional float inner_angle = 9; // default = 21.8. Inner angle can't be higher than outer angle, otherwise will default to same value. Min value is 0. Max value is 179.
26
26
  optional float outer_angle = 10; // default = 30. Outer angle can't be lower than inner angle, otherwise will inner angle will be set to same value. Max value is 179.
27
27
  }
28
- }
28
+ }
@@ -10,7 +10,9 @@ option (common.ecs_component_id) = 1076;
10
10
  // an 'instant' transition (like using speed/time = 0)
11
11
  // * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
12
12
  // the holding entity transform).
13
+ // * The fov defines the Field of View of the virtual camera
13
14
  message PBVirtualCamera {
14
15
  optional common.CameraTransition default_transition = 1;
15
16
  optional uint32 look_at_entity = 2;
17
+ optional float fov = 3; // default: 60
16
18
  }
@@ -0,0 +1,30 @@
1
+ syntax = "proto3";
2
+ package decentraland.social_service;
3
+
4
+ message InvalidFriendshipAction {
5
+ optional string message = 1;
6
+ }
7
+
8
+ message InternalServerError {
9
+ optional string message = 1;
10
+ }
11
+
12
+ message InvalidRequest {
13
+ optional string message = 1;
14
+ }
15
+
16
+ message ProfileNotFound {
17
+ optional string message = 1;
18
+ }
19
+
20
+ message ConflictingError {
21
+ optional string message = 1;
22
+ }
23
+
24
+ message ForbiddenError {
25
+ optional string message = 1;
26
+ }
27
+
28
+ message NotFoundError {
29
+ optional string message = 1;
30
+ }