@dcl/js-runtime 7.4.18 → 7.4.19
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/apis.d.ts +6 -3
- package/package.json +2 -2
package/apis.d.ts
CHANGED
|
@@ -1310,15 +1310,18 @@ declare module "~system/Runtime" {
|
|
|
1310
1310
|
}
|
|
1311
1311
|
|
|
1312
1312
|
// Function declaration section
|
|
1313
|
-
export interface
|
|
1313
|
+
export interface PBRealmInfo {
|
|
1314
1314
|
baseUrl: string;
|
|
1315
1315
|
realmName: string;
|
|
1316
1316
|
networkId: number;
|
|
1317
1317
|
commsAdapter: string;
|
|
1318
1318
|
isPreview: boolean;
|
|
1319
|
+
room?: string | undefined;
|
|
1319
1320
|
}
|
|
1320
|
-
|
|
1321
|
-
|
|
1321
|
+
|
|
1322
|
+
// Function declaration section
|
|
1323
|
+
export interface GetRealmResponse {
|
|
1324
|
+
realmInfo?: PBRealmInfo | undefined;
|
|
1322
1325
|
}
|
|
1323
1326
|
export interface GetWorldTimeResponse {
|
|
1324
1327
|
seconds: number;
|
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.4.
|
|
4
|
+
"version": "7.4.19",
|
|
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": "
|
|
23
|
+
"commit": "6d2ec97a241339671c7b75c6971003d24d3fe233"
|
|
24
24
|
}
|