@dcl/protocol 1.0.0-6200210039.commit-75f18e8 → 1.0.0-6313239013.commit-438d6b3

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 (36) hide show
  1. package/README.md +1 -11
  2. package/package.json +2 -2
  3. package/out-js/bff-services.gen.d.ts +0 -1
  4. package/out-js/bff-services.gen.js +0 -6
  5. package/out-js/bff-services.gen.js.map +0 -1
  6. package/out-js/decentraland/bff/authentication_service.gen.d.ts +0 -115
  7. package/out-js/decentraland/bff/authentication_service.gen.js +0 -386
  8. package/out-js/decentraland/bff/authentication_service.gen.js.map +0 -1
  9. package/out-js/decentraland/bff/comms_director_service.gen.d.ts +0 -89
  10. package/out-js/decentraland/bff/comms_director_service.gen.js +0 -250
  11. package/out-js/decentraland/bff/comms_director_service.gen.js.map +0 -1
  12. package/out-js/decentraland/bff/comms_service.gen.d.ts +0 -106
  13. package/out-js/decentraland/bff/comms_service.gen.js +0 -189
  14. package/out-js/decentraland/bff/comms_service.gen.js.map +0 -1
  15. package/out-js/decentraland/bff/http_endpoints.gen.d.ts +0 -168
  16. package/out-js/decentraland/bff/http_endpoints.gen.js +0 -949
  17. package/out-js/decentraland/bff/http_endpoints.gen.js.map +0 -1
  18. package/out-js/decentraland/bff/topics_service.gen.d.ts +0 -110
  19. package/out-js/decentraland/bff/topics_service.gen.js +0 -421
  20. package/out-js/decentraland/bff/topics_service.gen.js.map +0 -1
  21. package/out-js/google/protobuf/empty.gen.d.ts +0 -38
  22. package/out-js/google/protobuf/empty.gen.js +0 -54
  23. package/out-js/google/protobuf/empty.gen.js.map +0 -1
  24. package/out-ts/bff-services.gen.ts +0 -3
  25. package/out-ts/decentraland/bff/authentication_service.gen.ts +0 -421
  26. package/out-ts/decentraland/bff/comms_director_service.gen.ts +0 -273
  27. package/out-ts/decentraland/bff/comms_service.gen.ts +0 -212
  28. package/out-ts/decentraland/bff/http_endpoints.gen.ts +0 -1100
  29. package/out-ts/decentraland/bff/topics_service.gen.ts +0 -478
  30. package/out-ts/google/protobuf/empty.gen.ts +0 -72
  31. package/proto/decentraland/bff/authentication_service.proto +0 -39
  32. package/proto/decentraland/bff/comms_director_service.proto +0 -33
  33. package/proto/decentraland/bff/comms_service.proto +0 -25
  34. package/proto/decentraland/bff/http_endpoints.proto +0 -81
  35. package/proto/decentraland/bff/topics_service.proto +0 -34
  36. package/public/bff-services.proto +0 -16
@@ -1,81 +0,0 @@
1
- syntax = "proto3";
2
- package decentraland.bff;
3
-
4
- import "google/protobuf/empty.proto";
5
-
6
- message AboutResponse {
7
- bool healthy = 1;
8
- AboutConfiguration configurations = 2;
9
- ContentInfo content = 3;
10
- CommsInfo comms = 4;
11
- LambdasInfo lambdas = 5;
12
- optional BffInfo bff = 6;
13
- bool accepting_users = 7;
14
-
15
- message MinimapConfiguration {
16
- bool enabled = 1;
17
- optional string data_image = 2;
18
- optional string estate_image = 3;
19
- }
20
-
21
- message SkyboxConfiguration {
22
- // only one value at a time
23
- optional float fixed_hour = 1;
24
- repeated string textures = 2;
25
- }
26
-
27
- message AboutConfiguration {
28
- optional string realm_name = 1;
29
- uint32 network_id = 2;
30
- repeated string global_scenes_urn = 3;
31
- repeated string scenes_urn = 4;
32
- optional MinimapConfiguration minimap = 5;
33
- optional SkyboxConfiguration skybox = 6;
34
-
35
- // A content server to be used to load the parcels around the user. Uses the POST /entities/active endpoint
36
- // to continously fetch the parcels around the users. if null, then the default content server will be used
37
- // if == "" then the city_loader will be disabled and the scenes_urn will be used to load the world
38
- optional string city_loader_content_server = 7;
39
- }
40
-
41
- message ContentInfo {
42
- // common properties
43
- bool healthy = 1;
44
- optional string version = 2;
45
- optional string commit_hash = 3;
46
- string public_url = 4;
47
- }
48
- message LambdasInfo {
49
- // common properties
50
- bool healthy = 1;
51
- optional string version = 2;
52
- optional string commit_hash = 3;
53
- string public_url = 4;
54
- }
55
- message CommsInfo {
56
- // common properties
57
- bool healthy = 1;
58
- optional string version = 2;
59
- optional string commit_hash = 3;
60
- optional string public_url = 4;
61
- // specific properties
62
- string protocol = 50;
63
- optional int32 users_count = 51;
64
- optional string fixed_adapter = 52;
65
- }
66
- message BffInfo {
67
- // common properties
68
- bool healthy = 1;
69
- optional string version = 2;
70
- optional string commit_hash = 3;
71
- string public_url = 4;
72
- // specific properties
73
- optional int32 user_count = 51;
74
- optional string protocol_version = 52;
75
- }
76
- }
77
-
78
- service HttpEndpoints {
79
- // Returns the status and configuration of the bff microservice
80
- rpc About(google.protobuf.Empty) returns (AboutResponse) {}
81
- }
@@ -1,34 +0,0 @@
1
- syntax = "proto3";
2
- package decentraland.bff;
3
-
4
- message SubscriptionRequest {
5
- string topic = 1;
6
- }
7
-
8
- message PeerTopicSubscriptionResultElem {
9
- bytes payload = 1;
10
- string topic = 2;
11
- string sender = 3;
12
- }
13
-
14
- message SystemTopicSubscriptionResultElem {
15
- bytes payload = 1;
16
- string topic = 2;
17
- }
18
-
19
- message PublishToTopicRequest {
20
- string topic = 1;
21
- bytes payload = 2;
22
- }
23
-
24
- message PublishToTopicResult {
25
- bool ok = 1;
26
- }
27
-
28
- service TopicsService {
29
- rpc PeerSubscription(SubscriptionRequest) returns (stream PeerTopicSubscriptionResultElem) {}
30
- rpc SystemSubscription(SubscriptionRequest) returns (stream SystemTopicSubscriptionResultElem) {}
31
-
32
- // send a peer message to a topic
33
- rpc PublishToTopic(PublishToTopicRequest) returns (PublishToTopicResult) {}
34
- }
@@ -1,16 +0,0 @@
1
- syntax = "proto3";
2
-
3
- // This version is used to check compatibility between Kernel<>BFF
4
- // Update it manually using semantic versioning. Patches may be skipped.
5
- package v1_0_0;
6
-
7
- // This file only imports all the services for the BFF to help the compiler
8
- // resolve all dependencies
9
-
10
- import public "decentraland/bff/authentication_service.proto";
11
- import public "decentraland/bff/http_endpoints.proto";
12
- import public "decentraland/bff/topics_service.proto";
13
- import public "decentraland/bff/comms_director_service.proto";
14
-
15
- // TO BE DELETED
16
- import public "decentraland/bff/comms_service.proto";