@dcl/js-runtime 7.20.2-22309446491.commit-b942bde → 7.20.2

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 +0 -17
  2. package/package.json +2 -2
package/apis.d.ts CHANGED
@@ -1288,17 +1288,6 @@ declare module "~system/RestrictedActions" {
1288
1288
  }
1289
1289
  export interface TeleportToResponse {
1290
1290
  }
1291
- export interface SetUiFocusRequest {
1292
- elementId: string;
1293
- }
1294
- export interface ClearUiFocusRequest {
1295
- }
1296
- export interface GetUiFocusRequest {
1297
- }
1298
- export interface UiFocusResponse {
1299
- /** the element that is/was focussed */
1300
- elementId?: string | undefined;
1301
- }
1302
1291
  export interface CopyToClipboardRequest {
1303
1292
  text: string;
1304
1293
  }
@@ -1329,12 +1318,6 @@ declare module "~system/RestrictedActions" {
1329
1318
  export function setCommunicationsAdapter(body: CommsAdapterRequest): Promise<SuccessResponse>;
1330
1319
  /** TriggerSceneEmote will trigger an scene emote file in this current user */
1331
1320
  export function triggerSceneEmote(body: TriggerSceneEmoteRequest): Promise<SuccessResponse>;
1332
- /** Sets the focus to a specific UI element */
1333
- export function setUiFocus(body: SetUiFocusRequest): Promise<UiFocusResponse>;
1334
- /** Clears the focus from any currently focused textentry or dropdown */
1335
- export function clearUiFocus(body: SetUiFocusRequest): Promise<UiFocusResponse>;
1336
- /** Returns the element_id of any currently focused textentry or dropdown */
1337
- export function getUiFocus(body: GetUiFocusRequest): Promise<UiFocusResponse>;
1338
1321
  /** CopyToClipboard copies the provided text into the clipboard */
1339
1322
  export function copyToClipboard(body: CopyToClipboardRequest): Promise<EmptyResponse>;
1340
1323
 
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.20.2-22309446491.commit-b942bde",
4
+ "version": "7.20.2",
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": "b942bde1a614af3ccadcb1809e4d96d0b90368a8"
23
+ "commit": "74a71bc9821bc683b3259157af40a936483222ca"
24
24
  }