@dcl/protocol 1.0.0-14601347329.commit-deb9aa6 → 1.0.0-15045186685.commit-cc4fe42

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.
@@ -4,12 +4,21 @@ import _m0 from "protobufjs/minimal";
4
4
  export const protobufPackage = "decentraland.sdk.components";
5
5
 
6
6
  export interface PBRealmInfo {
7
+ /** the domain of the realm server */
7
8
  baseUrl: string;
9
+ /** the name of the realm server (more info https://adr.decentraland.org/adr/ADR-110) */
8
10
  realmName: string;
11
+ /** the network id (1=Ethereum, more info https://chainlist.org/) */
9
12
  networkId: number;
13
+ /** comms adapter (more info https://adr.decentraland.org/adr/ADR-180) */
10
14
  commsAdapter: string;
15
+ /** true if the scene is running as a local preview, instead of published in Decentraland. */
11
16
  isPreview: boolean;
12
- room?: string | undefined;
17
+ /** the room session id. */
18
+ room?:
19
+ | string
20
+ | undefined;
21
+ /** true if the user is connected to the scene room. */
13
22
  isConnectedSceneRoom?: boolean | undefined;
14
23
  }
15
24