@dcl/protocol 1.0.0-8512299862.commit-a3dc095 → 1.0.0-8691799990.commit-4ba546c

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-8512299862.commit-a3dc095",
3
+ "version": "1.0.0-8691799990.commit-4ba546c",
4
4
  "description": "",
5
5
  "repository": "decentraland/protocol.git",
6
6
  "homepage": "https://github.com/decentraland/protocol#readme",
@@ -29,5 +29,5 @@
29
29
  "out-js",
30
30
  "public"
31
31
  ],
32
- "commit": "a3dc095a22a487801a52311f2384b146243bc94a"
32
+ "commit": "4ba546c1344330abcc668aa7dddaaf66860078a6"
33
33
  }
@@ -0,0 +1,12 @@
1
+ syntax = "proto3";
2
+
3
+ package decentraland.sdk.components;
4
+
5
+ import "decentraland/sdk/components/common/id.proto";
6
+ import "decentraland/sdk/components/common/media_state.proto";
7
+ option (common.ecs_component_id) = 1105;
8
+
9
+ message PBAudioEvent {
10
+ common.MediaState state = 1;
11
+ uint32 timestamp = 2; // monotonic counter
12
+ }
@@ -0,0 +1,13 @@
1
+ syntax = "proto3";
2
+ package decentraland.sdk.components.common;
3
+
4
+ enum MediaState {
5
+ MS_NONE = 0;
6
+ MS_ERROR = 1;
7
+ MS_LOADING = 2;
8
+ MS_READY = 3;
9
+ MS_PLAYING = 4;
10
+ MS_BUFFERING = 5;
11
+ MS_SEEKING = 6;
12
+ MS_PAUSED = 7;
13
+ }