@dcl/protocol 1.0.0-6200210039.commit-75f18e8 → 1.0.0-6314457636.commit-a9a962a

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 (41) hide show
  1. package/README.md +1 -11
  2. package/out-js/decentraland/sdk/components/animator.gen.d.ts +0 -2
  3. package/out-js/decentraland/sdk/components/animator.gen.js +8 -28
  4. package/out-js/decentraland/sdk/components/animator.gen.js.map +1 -1
  5. package/out-ts/decentraland/sdk/components/animator.gen.ts +1 -24
  6. package/package.json +2 -2
  7. package/proto/decentraland/sdk/components/animator.proto +1 -1
  8. package/out-js/bff-services.gen.d.ts +0 -1
  9. package/out-js/bff-services.gen.js +0 -6
  10. package/out-js/bff-services.gen.js.map +0 -1
  11. package/out-js/decentraland/bff/authentication_service.gen.d.ts +0 -115
  12. package/out-js/decentraland/bff/authentication_service.gen.js +0 -386
  13. package/out-js/decentraland/bff/authentication_service.gen.js.map +0 -1
  14. package/out-js/decentraland/bff/comms_director_service.gen.d.ts +0 -89
  15. package/out-js/decentraland/bff/comms_director_service.gen.js +0 -250
  16. package/out-js/decentraland/bff/comms_director_service.gen.js.map +0 -1
  17. package/out-js/decentraland/bff/comms_service.gen.d.ts +0 -106
  18. package/out-js/decentraland/bff/comms_service.gen.js +0 -189
  19. package/out-js/decentraland/bff/comms_service.gen.js.map +0 -1
  20. package/out-js/decentraland/bff/http_endpoints.gen.d.ts +0 -168
  21. package/out-js/decentraland/bff/http_endpoints.gen.js +0 -949
  22. package/out-js/decentraland/bff/http_endpoints.gen.js.map +0 -1
  23. package/out-js/decentraland/bff/topics_service.gen.d.ts +0 -110
  24. package/out-js/decentraland/bff/topics_service.gen.js +0 -421
  25. package/out-js/decentraland/bff/topics_service.gen.js.map +0 -1
  26. package/out-js/google/protobuf/empty.gen.d.ts +0 -38
  27. package/out-js/google/protobuf/empty.gen.js +0 -54
  28. package/out-js/google/protobuf/empty.gen.js.map +0 -1
  29. package/out-ts/bff-services.gen.ts +0 -3
  30. package/out-ts/decentraland/bff/authentication_service.gen.ts +0 -421
  31. package/out-ts/decentraland/bff/comms_director_service.gen.ts +0 -273
  32. package/out-ts/decentraland/bff/comms_service.gen.ts +0 -212
  33. package/out-ts/decentraland/bff/http_endpoints.gen.ts +0 -1100
  34. package/out-ts/decentraland/bff/topics_service.gen.ts +0 -478
  35. package/out-ts/google/protobuf/empty.gen.ts +0 -72
  36. package/proto/decentraland/bff/authentication_service.proto +0 -39
  37. package/proto/decentraland/bff/comms_director_service.proto +0 -33
  38. package/proto/decentraland/bff/comms_service.proto +0 -25
  39. package/proto/decentraland/bff/http_endpoints.proto +0 -81
  40. package/proto/decentraland/bff/topics_service.proto +0 -34
  41. package/public/bff-services.proto +0 -16
@@ -1,168 +0,0 @@
1
- import _m0 from "protobufjs/minimal";
2
- import { Empty } from "../../google/protobuf/empty.gen";
3
- export declare const protobufPackage = "decentraland.bff";
4
- export interface AboutResponse {
5
- healthy: boolean;
6
- configurations: AboutResponse_AboutConfiguration | undefined;
7
- content: AboutResponse_ContentInfo | undefined;
8
- comms: AboutResponse_CommsInfo | undefined;
9
- lambdas: AboutResponse_LambdasInfo | undefined;
10
- bff?: AboutResponse_BffInfo | undefined;
11
- acceptingUsers: boolean;
12
- }
13
- export interface AboutResponse_MinimapConfiguration {
14
- enabled: boolean;
15
- dataImage?: string | undefined;
16
- estateImage?: string | undefined;
17
- }
18
- export interface AboutResponse_SkyboxConfiguration {
19
- /** only one value at a time */
20
- fixedHour?: number | undefined;
21
- textures: string[];
22
- }
23
- export interface AboutResponse_AboutConfiguration {
24
- realmName?: string | undefined;
25
- networkId: number;
26
- globalScenesUrn: string[];
27
- scenesUrn: string[];
28
- minimap?: AboutResponse_MinimapConfiguration | undefined;
29
- skybox?: AboutResponse_SkyboxConfiguration | undefined;
30
- /**
31
- * A content server to be used to load the parcels around the user. Uses the POST /entities/active endpoint
32
- * to continously fetch the parcels around the users. if null, then the default content server will be used
33
- * if == "" then the city_loader will be disabled and the scenes_urn will be used to load the world
34
- */
35
- cityLoaderContentServer?: string | undefined;
36
- }
37
- export interface AboutResponse_ContentInfo {
38
- /** common properties */
39
- healthy: boolean;
40
- version?: string | undefined;
41
- commitHash?: string | undefined;
42
- publicUrl: string;
43
- }
44
- export interface AboutResponse_LambdasInfo {
45
- /** common properties */
46
- healthy: boolean;
47
- version?: string | undefined;
48
- commitHash?: string | undefined;
49
- publicUrl: string;
50
- }
51
- export interface AboutResponse_CommsInfo {
52
- /** common properties */
53
- healthy: boolean;
54
- version?: string | undefined;
55
- commitHash?: string | undefined;
56
- publicUrl?: string | undefined;
57
- /** specific properties */
58
- protocol: string;
59
- usersCount?: number | undefined;
60
- fixedAdapter?: string | undefined;
61
- }
62
- export interface AboutResponse_BffInfo {
63
- /** common properties */
64
- healthy: boolean;
65
- version?: string | undefined;
66
- commitHash?: string | undefined;
67
- publicUrl: string;
68
- /** specific properties */
69
- userCount?: number | undefined;
70
- protocolVersion?: string | undefined;
71
- }
72
- export declare namespace AboutResponse {
73
- function encode(message: AboutResponse, writer?: _m0.Writer): _m0.Writer;
74
- function decode(input: _m0.Reader | Uint8Array, length?: number): AboutResponse;
75
- function fromJSON(object: any): AboutResponse;
76
- function toJSON(message: AboutResponse): unknown;
77
- function create<I extends Exact<DeepPartial<AboutResponse>, I>>(base?: I): AboutResponse;
78
- function fromPartial<I extends Exact<DeepPartial<AboutResponse>, I>>(object: I): AboutResponse;
79
- }
80
- export declare namespace AboutResponse_MinimapConfiguration {
81
- function encode(message: AboutResponse_MinimapConfiguration, writer?: _m0.Writer): _m0.Writer;
82
- function decode(input: _m0.Reader | Uint8Array, length?: number): AboutResponse_MinimapConfiguration;
83
- function fromJSON(object: any): AboutResponse_MinimapConfiguration;
84
- function toJSON(message: AboutResponse_MinimapConfiguration): unknown;
85
- function create<I extends Exact<DeepPartial<AboutResponse_MinimapConfiguration>, I>>(base?: I): AboutResponse_MinimapConfiguration;
86
- function fromPartial<I extends Exact<DeepPartial<AboutResponse_MinimapConfiguration>, I>>(object: I): AboutResponse_MinimapConfiguration;
87
- }
88
- export declare namespace AboutResponse_SkyboxConfiguration {
89
- function encode(message: AboutResponse_SkyboxConfiguration, writer?: _m0.Writer): _m0.Writer;
90
- function decode(input: _m0.Reader | Uint8Array, length?: number): AboutResponse_SkyboxConfiguration;
91
- function fromJSON(object: any): AboutResponse_SkyboxConfiguration;
92
- function toJSON(message: AboutResponse_SkyboxConfiguration): unknown;
93
- function create<I extends Exact<DeepPartial<AboutResponse_SkyboxConfiguration>, I>>(base?: I): AboutResponse_SkyboxConfiguration;
94
- function fromPartial<I extends Exact<DeepPartial<AboutResponse_SkyboxConfiguration>, I>>(object: I): AboutResponse_SkyboxConfiguration;
95
- }
96
- export declare namespace AboutResponse_AboutConfiguration {
97
- function encode(message: AboutResponse_AboutConfiguration, writer?: _m0.Writer): _m0.Writer;
98
- function decode(input: _m0.Reader | Uint8Array, length?: number): AboutResponse_AboutConfiguration;
99
- function fromJSON(object: any): AboutResponse_AboutConfiguration;
100
- function toJSON(message: AboutResponse_AboutConfiguration): unknown;
101
- function create<I extends Exact<DeepPartial<AboutResponse_AboutConfiguration>, I>>(base?: I): AboutResponse_AboutConfiguration;
102
- function fromPartial<I extends Exact<DeepPartial<AboutResponse_AboutConfiguration>, I>>(object: I): AboutResponse_AboutConfiguration;
103
- }
104
- export declare namespace AboutResponse_ContentInfo {
105
- function encode(message: AboutResponse_ContentInfo, writer?: _m0.Writer): _m0.Writer;
106
- function decode(input: _m0.Reader | Uint8Array, length?: number): AboutResponse_ContentInfo;
107
- function fromJSON(object: any): AboutResponse_ContentInfo;
108
- function toJSON(message: AboutResponse_ContentInfo): unknown;
109
- function create<I extends Exact<DeepPartial<AboutResponse_ContentInfo>, I>>(base?: I): AboutResponse_ContentInfo;
110
- function fromPartial<I extends Exact<DeepPartial<AboutResponse_ContentInfo>, I>>(object: I): AboutResponse_ContentInfo;
111
- }
112
- export declare namespace AboutResponse_LambdasInfo {
113
- function encode(message: AboutResponse_LambdasInfo, writer?: _m0.Writer): _m0.Writer;
114
- function decode(input: _m0.Reader | Uint8Array, length?: number): AboutResponse_LambdasInfo;
115
- function fromJSON(object: any): AboutResponse_LambdasInfo;
116
- function toJSON(message: AboutResponse_LambdasInfo): unknown;
117
- function create<I extends Exact<DeepPartial<AboutResponse_LambdasInfo>, I>>(base?: I): AboutResponse_LambdasInfo;
118
- function fromPartial<I extends Exact<DeepPartial<AboutResponse_LambdasInfo>, I>>(object: I): AboutResponse_LambdasInfo;
119
- }
120
- export declare namespace AboutResponse_CommsInfo {
121
- function encode(message: AboutResponse_CommsInfo, writer?: _m0.Writer): _m0.Writer;
122
- function decode(input: _m0.Reader | Uint8Array, length?: number): AboutResponse_CommsInfo;
123
- function fromJSON(object: any): AboutResponse_CommsInfo;
124
- function toJSON(message: AboutResponse_CommsInfo): unknown;
125
- function create<I extends Exact<DeepPartial<AboutResponse_CommsInfo>, I>>(base?: I): AboutResponse_CommsInfo;
126
- function fromPartial<I extends Exact<DeepPartial<AboutResponse_CommsInfo>, I>>(object: I): AboutResponse_CommsInfo;
127
- }
128
- export declare namespace AboutResponse_BffInfo {
129
- function encode(message: AboutResponse_BffInfo, writer?: _m0.Writer): _m0.Writer;
130
- function decode(input: _m0.Reader | Uint8Array, length?: number): AboutResponse_BffInfo;
131
- function fromJSON(object: any): AboutResponse_BffInfo;
132
- function toJSON(message: AboutResponse_BffInfo): unknown;
133
- function create<I extends Exact<DeepPartial<AboutResponse_BffInfo>, I>>(base?: I): AboutResponse_BffInfo;
134
- function fromPartial<I extends Exact<DeepPartial<AboutResponse_BffInfo>, I>>(object: I): AboutResponse_BffInfo;
135
- }
136
- export type HttpEndpointsDefinition = typeof HttpEndpointsDefinition;
137
- export declare const HttpEndpointsDefinition: {
138
- readonly name: "HttpEndpoints";
139
- readonly fullName: "decentraland.bff.HttpEndpoints";
140
- readonly methods: {
141
- /** Returns the status and configuration of the bff microservice */
142
- readonly about: {
143
- readonly name: "About";
144
- readonly requestType: typeof Empty;
145
- readonly requestStream: false;
146
- readonly responseType: typeof AboutResponse;
147
- readonly responseStream: false;
148
- readonly options: {};
149
- };
150
- };
151
- };
152
- type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
153
- export type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {
154
- $case: string;
155
- } ? {
156
- [K in keyof Omit<T, "$case">]?: DeepPartial<T[K]>;
157
- } & {
158
- $case: T["$case"];
159
- } : T extends {} ? {
160
- [K in keyof T]?: DeepPartial<T[K]>;
161
- } : Partial<T>;
162
- type KeysOfUnion<T> = T extends T ? keyof T : never;
163
- export type Exact<P, I extends P> = P extends Builtin ? P : P & {
164
- [K in keyof P]: Exact<P[K], I[K]>;
165
- } & {
166
- [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
167
- };
168
- export {};