@dcl/playground-assets 7.9.5-16891824780.commit-c2e52db → 7.9.6-16908909596.commit-3302d67

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.
@@ -1284,6 +1284,14 @@ declare module "~system/RestrictedActions" {
1284
1284
  export interface MovePlayerToResponse {
1285
1285
  }
1286
1286
  export interface TeleportToResponse {
1287
+ }
1288
+ export interface SetUiFocusRequest {
1289
+ elementId: string;
1290
+ }
1291
+ export interface CopyToClipboardRequest {
1292
+ text: string;
1293
+ }
1294
+ export interface EmptyResponse {
1287
1295
  }
1288
1296
 
1289
1297
  // Function declaration section
@@ -1306,6 +1314,10 @@ declare module "~system/RestrictedActions" {
1306
1314
  export function setCommunicationsAdapter(body: CommsAdapterRequest): Promise<SuccessResponse>;
1307
1315
  /** TriggerSceneEmote will trigger an scene emote file in this current user */
1308
1316
  export function triggerSceneEmote(body: TriggerSceneEmoteRequest): Promise<SuccessResponse>;
1317
+ /** Sets the focus to a specific UI element */
1318
+ export function setUiFocus(body: SetUiFocusRequest): Promise<SuccessResponse>;
1319
+ /** Copies the specified text to the user's clipboard */
1320
+ export function copyToClipboard(body: CopyToClipboardRequest): Promise<EmptyResponse>;
1309
1321
 
1310
1322
  }
1311
1323
  /**
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/sdk",
3
3
  "description": "",
4
- "version": "7.9.5-16891824780.commit-c2e52db",
4
+ "version": "7.9.6-16908909596.commit-3302d67",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
7
  "@dcl/ecs": "file:../ecs",
@@ -35,5 +35,5 @@
35
35
  },
36
36
  "types": "./index.d.ts",
37
37
  "typings": "./index.d.ts",
38
- "commit": "c2e52dbdacd56024b807a1819d4e5a9a2674ab3a"
38
+ "commit": "3302d67d9b8fa94b40f98fb1d9402a6355df1ec6"
39
39
  }