@dcl/protocol 1.0.0-29276634715.commit-82dbfb0 → 1.0.0-29286492043.commit-0010e70

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.
Files changed (39) hide show
  1. package/README.md +0 -217
  2. package/out-js/decentraland/kernel/comms/rfc4/comms.gen.d.ts +0 -21
  3. package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js +4 -124
  4. package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js.map +1 -1
  5. package/out-js/decentraland/sdk/components/avatar_shape.gen.d.ts +0 -8
  6. package/out-js/decentraland/sdk/components/avatar_shape.gen.js +1 -35
  7. package/out-js/decentraland/sdk/components/avatar_shape.gen.js.map +1 -1
  8. package/out-ts/decentraland/kernel/comms/rfc4/comms.gen.ts +2 -166
  9. package/out-ts/decentraland/sdk/components/avatar_shape.gen.ts +0 -34
  10. package/package.json +6 -9
  11. package/proto/buf.yaml +47 -0
  12. package/proto/decentraland/kernel/comms/rfc4/comms.proto +0 -11
  13. package/proto/decentraland/sdk/components/avatar_shape.proto +0 -5
  14. package/proto/decentraland/sdk/components/light_source.proto +1 -1
  15. package/proto/decentraland/sdk/components/virtual_camera.proto +0 -2
  16. package/proto/google/LICENSE +27 -0
  17. package/proto/google/README.md +1 -0
  18. package/proto/google/api/annotations.json +83 -0
  19. package/proto/google/api/annotations.proto +11 -0
  20. package/proto/google/api/http.json +86 -0
  21. package/proto/google/api/http.proto +31 -0
  22. package/proto/google/protobuf/api.json +118 -0
  23. package/proto/google/protobuf/api.proto +34 -0
  24. package/proto/google/protobuf/descriptor.json +739 -0
  25. package/proto/google/protobuf/descriptor.proto +286 -0
  26. package/proto/google/protobuf/source_context.json +20 -0
  27. package/proto/google/protobuf/source_context.proto +7 -0
  28. package/proto/google/protobuf/type.json +202 -0
  29. package/proto/google/protobuf/type.proto +89 -0
  30. package/proto/decentraland/common/options.proto +0 -51
  31. package/proto/decentraland/common/quantization_example.proto +0 -164
  32. package/proto/decentraland/pulse/pulse_client.proto +0 -79
  33. package/proto/decentraland/pulse/pulse_server.proto +0 -144
  34. package/proto/decentraland/pulse/pulse_shared.proto +0 -57
  35. package/protoc-gen-bitwise/generator_csharp.js +0 -248
  36. package/protoc-gen-bitwise/options.js +0 -139
  37. package/protoc-gen-bitwise/plugin.js +0 -87
  38. package/protoc-gen-bitwise/runtime/cs/Quantize.cs +0 -70
  39. package/protoc-gen-bitwise/wire.js +0 -239
@@ -0,0 +1,118 @@
1
+ {
2
+ "nested": {
3
+ "google": {
4
+ "nested": {
5
+ "protobuf": {
6
+ "nested": {
7
+ "Api": {
8
+ "fields": {
9
+ "name": {
10
+ "type": "string",
11
+ "id": 1
12
+ },
13
+ "methods": {
14
+ "rule": "repeated",
15
+ "type": "Method",
16
+ "id": 2
17
+ },
18
+ "options": {
19
+ "rule": "repeated",
20
+ "type": "Option",
21
+ "id": 3
22
+ },
23
+ "version": {
24
+ "type": "string",
25
+ "id": 4
26
+ },
27
+ "sourceContext": {
28
+ "type": "SourceContext",
29
+ "id": 5
30
+ },
31
+ "mixins": {
32
+ "rule": "repeated",
33
+ "type": "Mixin",
34
+ "id": 6
35
+ },
36
+ "syntax": {
37
+ "type": "Syntax",
38
+ "id": 7
39
+ }
40
+ }
41
+ },
42
+ "Method": {
43
+ "fields": {
44
+ "name": {
45
+ "type": "string",
46
+ "id": 1
47
+ },
48
+ "requestTypeUrl": {
49
+ "type": "string",
50
+ "id": 2
51
+ },
52
+ "requestStreaming": {
53
+ "type": "bool",
54
+ "id": 3
55
+ },
56
+ "responseTypeUrl": {
57
+ "type": "string",
58
+ "id": 4
59
+ },
60
+ "responseStreaming": {
61
+ "type": "bool",
62
+ "id": 5
63
+ },
64
+ "options": {
65
+ "rule": "repeated",
66
+ "type": "Option",
67
+ "id": 6
68
+ },
69
+ "syntax": {
70
+ "type": "Syntax",
71
+ "id": 7
72
+ }
73
+ }
74
+ },
75
+ "Mixin": {
76
+ "fields": {
77
+ "name": {
78
+ "type": "string",
79
+ "id": 1
80
+ },
81
+ "root": {
82
+ "type": "string",
83
+ "id": 2
84
+ }
85
+ }
86
+ },
87
+ "SourceContext": {
88
+ "fields": {
89
+ "fileName": {
90
+ "type": "string",
91
+ "id": 1
92
+ }
93
+ }
94
+ },
95
+ "Option": {
96
+ "fields": {
97
+ "name": {
98
+ "type": "string",
99
+ "id": 1
100
+ },
101
+ "value": {
102
+ "type": "Any",
103
+ "id": 2
104
+ }
105
+ }
106
+ },
107
+ "Syntax": {
108
+ "values": {
109
+ "SYNTAX_PROTO2": 0,
110
+ "SYNTAX_PROTO3": 1
111
+ }
112
+ }
113
+ }
114
+ }
115
+ }
116
+ }
117
+ }
118
+ }
@@ -0,0 +1,34 @@
1
+ syntax = "proto3";
2
+
3
+ package google.protobuf;
4
+
5
+ import "google/protobuf/source_context.proto";
6
+ import "google/protobuf/type.proto";
7
+
8
+ message Api {
9
+
10
+ string name = 1;
11
+ repeated Method methods = 2;
12
+ repeated Option options = 3;
13
+ string version = 4;
14
+ SourceContext source_context = 5;
15
+ repeated Mixin mixins = 6;
16
+ Syntax syntax = 7;
17
+ }
18
+
19
+ message Method {
20
+
21
+ string name = 1;
22
+ string request_type_url = 2;
23
+ bool request_streaming = 3;
24
+ string response_type_url = 4;
25
+ bool response_streaming = 5;
26
+ repeated Option options = 6;
27
+ Syntax syntax = 7;
28
+ }
29
+
30
+ message Mixin {
31
+
32
+ string name = 1;
33
+ string root = 2;
34
+ }