@dcl/protocol 1.0.0-3227242807.commit-ad14cba → 1.0.0-3238274199.commit-12a8e73
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/out-ts/{bff/authentication-service.gen.ts → decentraland/bff/authentication_service.gen.ts} +0 -0
- package/out-ts/{bff/comms-director-service.gen.ts → decentraland/bff/comms_director_service.gen.ts} +2 -2
- package/out-ts/{bff/comms-service.gen.ts → decentraland/bff/comms_service.gen.ts} +1 -1
- package/out-ts/{bff/http-endpoints.gen.ts → decentraland/bff/http_endpoints.gen.ts} +1 -1
- package/out-ts/{bff/topics-service.gen.ts → decentraland/bff/topics_service.gen.ts} +0 -0
- package/out-ts/{common/ContentMapping.gen.ts → decentraland/common/content_mapping.gen.ts} +0 -0
- package/out-ts/{kernel/apis/common-sdk/UserData.gen.ts → decentraland/common/sdk/user_data.gen.ts} +1 -1
- package/out-ts/{common/Vectors.gen.ts → decentraland/common/vectors.gen.ts} +0 -0
- package/out-ts/{kernel/apis/CommunicationsController.gen.ts → decentraland/kernel/apis/communications_controller.gen.ts} +2 -2
- package/out-ts/{kernel/apis/DevTools.gen.ts → decentraland/kernel/apis/dev_tools.gen.ts} +2 -2
- package/out-ts/{kernel/apis/EngineAPI.gen.ts → decentraland/kernel/apis/engine_api.gen.ts} +112 -112
- package/out-ts/{kernel/apis/EnvironmentAPI.gen.ts → decentraland/kernel/apis/environment_api.gen.ts} +3 -3
- package/out-ts/{kernel/apis/EthereumController.gen.ts → decentraland/kernel/apis/ethereum_controller.gen.ts} +2 -2
- package/out-ts/{kernel/apis/ExperimentalAPI.gen.ts → decentraland/kernel/apis/experimental_api.gen.ts} +2 -2
- package/out-ts/{kernel/apis/ParcelIdentity.gen.ts → decentraland/kernel/apis/parcel_identity.gen.ts} +3 -3
- package/out-ts/{kernel/apis/Permissions.gen.ts → decentraland/kernel/apis/permissions.gen.ts} +27 -27
- package/out-ts/{kernel/apis/Players.gen.ts → decentraland/kernel/apis/players.gen.ts} +3 -3
- package/out-ts/{kernel/apis/PortableExperiences.gen.ts → decentraland/kernel/apis/portable_experiences.gen.ts} +2 -2
- package/out-ts/{kernel/apis/RestrictedActions.gen.ts → decentraland/kernel/apis/restricted_actions.gen.ts} +2 -2
- package/out-ts/{kernel/apis/SignedFetch.gen.ts → decentraland/kernel/apis/signed_fetch.gen.ts} +2 -2
- package/out-ts/{kernel/apis/SocialController.gen.ts → decentraland/kernel/apis/social_controller.gen.ts} +2 -2
- package/out-ts/{kernel/apis/UserActionModule.gen.ts → decentraland/kernel/apis/user_action_module.gen.ts} +2 -2
- package/out-ts/{kernel/apis/UserIdentity.gen.ts → decentraland/kernel/apis/user_identity.gen.ts} +3 -3
- package/out-ts/decentraland/renderer/engine_interface.gen.ts +8432 -0
- package/out-ts/decentraland/renderer/protocol.gen.ts +322 -0
- package/out-ts/renderer-interface.gen.ts +3 -0
- package/package.json +5 -9
- package/proto/buf.yaml +45 -0
- package/{bff/authentication-service.proto → proto/decentraland/bff/authentication_service.proto} +0 -1
- package/{bff/comms-director-service.proto → proto/decentraland/bff/comms_director_service.proto} +1 -1
- package/{bff/comms-service.proto → proto/decentraland/bff/comms_service.proto} +2 -2
- package/{bff/http-endpoints.proto → proto/decentraland/bff/http_endpoints.proto} +1 -2
- package/{bff/topics-service.proto → proto/decentraland/bff/topics_service.proto} +0 -1
- package/proto/decentraland/common/colors.proto +15 -0
- package/{common/ContentMapping.proto → proto/decentraland/common/content_mapping.proto} +0 -0
- package/{common/Entity.proto → proto/decentraland/common/entity.proto} +1 -1
- package/{kernel/apis/common-sdk/UserData.proto → proto/decentraland/common/sdk/user_data.proto} +1 -0
- package/{common/Vectors.proto → proto/decentraland/common/vectors.proto} +0 -0
- package/{kernel/apis/CommunicationsController.proto → proto/decentraland/kernel/apis/communications_controller.proto} +1 -0
- package/{kernel/apis/DevTools.proto → proto/decentraland/kernel/apis/dev_tools.proto} +1 -0
- package/proto/decentraland/kernel/apis/engine_api.proto +179 -0
- package/{kernel/apis/EnvironmentAPI.proto → proto/decentraland/kernel/apis/environment_api.proto} +3 -2
- package/{kernel/apis/EthereumController.proto → proto/decentraland/kernel/apis/ethereum_controller.proto} +2 -1
- package/{kernel/apis/ExperimentalAPI.proto → proto/decentraland/kernel/apis/experimental_api.proto} +1 -0
- package/{kernel/apis/ParcelIdentity.proto → proto/decentraland/kernel/apis/parcel_identity.proto} +2 -1
- package/proto/decentraland/kernel/apis/permissions.proto +32 -0
- package/{kernel/apis/Players.proto → proto/decentraland/kernel/apis/players.proto} +3 -2
- package/{kernel/apis/PortableExperiences.proto → proto/decentraland/kernel/apis/portable_experiences.proto} +1 -0
- package/{kernel/apis/RestrictedActions.proto → proto/decentraland/kernel/apis/restricted_actions.proto} +1 -0
- package/{kernel/apis/SignedFetch.proto → proto/decentraland/kernel/apis/signed_fetch.proto} +1 -0
- package/{kernel/apis/SocialController.proto → proto/decentraland/kernel/apis/social_controller.proto} +1 -0
- package/{kernel/apis/UserActionModule.proto → proto/decentraland/kernel/apis/user_action_module.proto} +1 -0
- package/{kernel/apis/UserIdentity.proto → proto/decentraland/kernel/apis/user_identity.proto} +3 -2
- package/{kernel/comms/comms-rfc-4.proto → proto/decentraland/kernel/comms/rfc4/comms.proto} +2 -2
- package/{kernel/comms/ws-comms-rfc-5.proto → proto/decentraland/kernel/comms/rfc5/ws_comms.proto} +1 -1
- package/proto/decentraland/kernel/comms/v1/broker.proto +114 -0
- package/proto/decentraland/kernel/comms/v1/comms.proto +68 -0
- package/proto/decentraland/kernel/comms/v2/comms.proto +61 -0
- package/{kernel → proto/decentraland/kernel}/comms/v3/archipelago.proto +7 -7
- package/{kernel → proto/decentraland/kernel}/comms/v3/comms.proto +3 -3
- package/{renderer-protocol/EngineInterface.proto → proto/decentraland/renderer/engine_interface.proto} +2 -2
- package/{renderer-protocol/RendererProtocol.proto → proto/decentraland/renderer/protocol.proto} +2 -0
- package/{ecs → proto/decentraland/sdk}/components/README.md +3 -3
- package/{ecs → proto/decentraland/sdk}/components/Transform.md +0 -0
- package/{ecs/components/Animator.proto → proto/decentraland/sdk/components/animator.proto} +3 -2
- package/{ecs/components/AudioSource.proto → proto/decentraland/sdk/components/audio_source.proto} +3 -2
- package/{ecs/components/AudioStream.proto → proto/decentraland/sdk/components/audio_stream.proto} +3 -2
- package/proto/decentraland/sdk/components/avatar_attach.proto +19 -0
- package/proto/decentraland/sdk/components/avatar_modifier_area.proto +19 -0
- package/{ecs/components/AvatarShape.proto → proto/decentraland/sdk/components/avatar_shape.proto} +7 -6
- package/{ecs/components/Billboard.proto → proto/decentraland/sdk/components/billboard.proto} +3 -2
- package/proto/decentraland/sdk/components/camera_mode.proto +10 -0
- package/proto/decentraland/sdk/components/camera_mode_area.proto +12 -0
- package/proto/decentraland/sdk/components/common/action_button.proto +20 -0
- package/proto/decentraland/sdk/components/common/camera_mode_value.proto +8 -0
- package/{ecs → proto/decentraland/sdk}/components/common/id.md +0 -0
- package/{ecs → proto/decentraland/sdk}/components/common/id.proto +1 -0
- package/proto/decentraland/sdk/components/common/texts.proto +14 -0
- package/{ecs/components/GltfContainer.proto → proto/decentraland/sdk/components/gltf_container.proto} +3 -2
- package/proto/decentraland/sdk/components/material.proto +59 -0
- package/proto/decentraland/sdk/components/mesh_collider.proto +35 -0
- package/{ecs/components/MeshRenderer.proto → proto/decentraland/sdk/components/mesh_renderer.proto} +3 -2
- package/proto/decentraland/sdk/components/nft_shape.proto +40 -0
- package/proto/decentraland/sdk/components/pointer_events.proto +29 -0
- package/{ecs/components/PointerEventsResult.proto → proto/decentraland/sdk/components/pointer_events_result.proto} +7 -6
- package/proto/decentraland/sdk/components/pointer_lock.proto +9 -0
- package/proto/decentraland/sdk/components/raycast.proto +21 -0
- package/proto/decentraland/sdk/components/raycast_result.proto +25 -0
- package/{ecs/components/TextShape.proto → proto/decentraland/sdk/components/text_shape.proto} +11 -10
- package/proto/decentraland/sdk/components/ui_background.proto +11 -0
- package/proto/decentraland/sdk/components/ui_text.proto +16 -0
- package/{ecs/components/UiTransform.proto → proto/decentraland/sdk/components/ui_transform.proto} +50 -49
- package/proto/decentraland/sdk/components/visibility_component.proto +9 -0
- package/proto/google/LICENSE +27 -0
- package/proto/google/README.md +1 -0
- package/proto/google/api/annotations.json +83 -0
- package/proto/google/api/annotations.proto +11 -0
- package/proto/google/api/http.json +86 -0
- package/proto/google/api/http.proto +31 -0
- package/proto/google/protobuf/api.json +118 -0
- package/proto/google/protobuf/api.proto +34 -0
- package/proto/google/protobuf/descriptor.json +739 -0
- package/proto/google/protobuf/descriptor.proto +286 -0
- package/proto/google/protobuf/source_context.json +20 -0
- package/proto/google/protobuf/source_context.proto +7 -0
- package/proto/google/protobuf/type.json +202 -0
- package/proto/google/protobuf/type.proto +89 -0
- package/{bff-services.proto → public/bff-services.proto} +5 -5
- package/public/renderer-interface.proto +4 -0
- package/public/sdk-apis.proto +21 -0
- package/ecs/components/AvatarAttach.proto +0 -16
- package/ecs/components/AvatarModifierArea.proto +0 -16
- package/ecs/components/CameraMode.proto +0 -9
- package/ecs/components/CameraModeArea.proto +0 -11
- package/ecs/components/Material.proto +0 -59
- package/ecs/components/MeshCollider.proto +0 -35
- package/ecs/components/NFTShape.proto +0 -38
- package/ecs/components/PointerEvents.proto +0 -28
- package/ecs/components/PointerLock.proto +0 -8
- package/ecs/components/Raycast.proto +0 -19
- package/ecs/components/RaycastResult.proto +0 -24
- package/ecs/components/UiBackground.proto +0 -10
- package/ecs/components/UiText.proto +0 -25
- package/ecs/components/VisibilityComponent.proto +0 -8
- package/ecs/components/common/ActionButton.proto +0 -18
- package/ecs/components/common/CameraModeValue.proto +0 -6
- package/ecs/components/common/Color3.proto +0 -8
- package/ecs/components/common/Color4.proto +0 -8
- package/ecs/components/common/Vector3.proto +0 -7
- package/kernel/apis/EngineAPI.proto +0 -180
- package/kernel/apis/Permissions.proto +0 -30
- package/kernel/apis/SceneStateStorageController.proto +0 -114
- package/kernel/comms/v1/broker.proto +0 -114
- package/kernel/comms/v1/comms.proto +0 -68
- package/kernel/comms/v2/comms.proto +0 -61
- package/out-ts/kernel/apis/SceneStateStorageController.gen.ts +0 -1331
- package/sdk-apis.proto +0 -22
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nested": {
|
|
3
|
+
"google": {
|
|
4
|
+
"nested": {
|
|
5
|
+
"api": {
|
|
6
|
+
"nested": {
|
|
7
|
+
"Http": {
|
|
8
|
+
"fields": {
|
|
9
|
+
"rules": {
|
|
10
|
+
"rule": "repeated",
|
|
11
|
+
"type": "HttpRule",
|
|
12
|
+
"id": 1
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"HttpRule": {
|
|
17
|
+
"oneofs": {
|
|
18
|
+
"pattern": {
|
|
19
|
+
"oneof": [
|
|
20
|
+
"get",
|
|
21
|
+
"put",
|
|
22
|
+
"post",
|
|
23
|
+
"delete",
|
|
24
|
+
"patch",
|
|
25
|
+
"custom"
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"fields": {
|
|
30
|
+
"get": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"id": 2
|
|
33
|
+
},
|
|
34
|
+
"put": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"id": 3
|
|
37
|
+
},
|
|
38
|
+
"post": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"id": 4
|
|
41
|
+
},
|
|
42
|
+
"delete": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"id": 5
|
|
45
|
+
},
|
|
46
|
+
"patch": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"id": 6
|
|
49
|
+
},
|
|
50
|
+
"custom": {
|
|
51
|
+
"type": "CustomHttpPattern",
|
|
52
|
+
"id": 8
|
|
53
|
+
},
|
|
54
|
+
"selector": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"id": 1
|
|
57
|
+
},
|
|
58
|
+
"body": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"id": 7
|
|
61
|
+
},
|
|
62
|
+
"additionalBindings": {
|
|
63
|
+
"rule": "repeated",
|
|
64
|
+
"type": "HttpRule",
|
|
65
|
+
"id": 11
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"CustomHttpPattern": {
|
|
70
|
+
"fields": {
|
|
71
|
+
"kind": {
|
|
72
|
+
"type": "string",
|
|
73
|
+
"id": 1
|
|
74
|
+
},
|
|
75
|
+
"path": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"id": 2
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package google.api;
|
|
4
|
+
|
|
5
|
+
message Http {
|
|
6
|
+
|
|
7
|
+
repeated HttpRule rules = 1;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
message HttpRule {
|
|
11
|
+
|
|
12
|
+
oneof pattern {
|
|
13
|
+
|
|
14
|
+
string get = 2;
|
|
15
|
+
string put = 3;
|
|
16
|
+
string post = 4;
|
|
17
|
+
string delete = 5;
|
|
18
|
+
string patch = 6;
|
|
19
|
+
CustomHttpPattern custom = 8;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
string selector = 1;
|
|
23
|
+
string body = 7;
|
|
24
|
+
repeated HttpRule additional_bindings = 11;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
message CustomHttpPattern {
|
|
28
|
+
|
|
29
|
+
string kind = 1;
|
|
30
|
+
string path = 2;
|
|
31
|
+
}
|
|
@@ -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
|
+
}
|