@dcl/js-runtime 7.8.9-15283822925.commit-b281f0c → 7.8.10-15453890617.commit-9dc90d3

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 (2) hide show
  1. package/apis.d.ts +7 -0
  2. package/package.json +2 -2
package/apis.d.ts CHANGED
@@ -1320,12 +1320,19 @@ declare module "~system/Runtime" {
1320
1320
 
1321
1321
  // Function declaration section
1322
1322
  export interface PBRealmInfo {
1323
+ /** the domain of the realm server */
1323
1324
  baseUrl: string;
1325
+ /** the name of the realm server (more info https://adr.decentraland.org/adr/ADR-110) */
1324
1326
  realmName: string;
1327
+ /** the network id (1=Ethereum, more info https://chainlist.org/) */
1325
1328
  networkId: number;
1329
+ /** comms adapter (more info https://adr.decentraland.org/adr/ADR-180) */
1326
1330
  commsAdapter: string;
1331
+ /** true if the scene is running as a local preview, instead of published in Decentraland. */
1327
1332
  isPreview: boolean;
1333
+ /** the room session id. */
1328
1334
  room?: string | undefined;
1335
+ /** true if the user is connected to the scene room. */
1329
1336
  isConnectedSceneRoom?: boolean | undefined;
1330
1337
  }
1331
1338
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/js-runtime",
3
3
  "description": "JavaScript runtime definitions for Decentraland environments",
4
- "version": "7.8.9-15283822925.commit-b281f0c",
4
+ "version": "7.8.10-15453890617.commit-9dc90d3",
5
5
  "author": "",
6
6
  "files": [
7
7
  "index.d.ts",
@@ -20,5 +20,5 @@
20
20
  },
21
21
  "types": "./index.d.ts",
22
22
  "typings": "./index.d.ts",
23
- "commit": "b281f0c54bee6b279799177fbb3f4d86d837a497"
23
+ "commit": "9dc90d36557df03682c958b70d7edcc81c1ba711"
24
24
  }