@dcl/playground-assets 7.8.22-16451545276.commit-a3e1759 → 7.8.22-16482785086.commit-b7d3158
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/dist/alpha.d.ts +833 -69
- package/dist/beta.d.ts +833 -69
- package/dist/index.bundled.d.ts +833 -69
- package/dist/index.js +7 -7
- package/dist/index.js.map +4 -4
- package/dist/playground/sdk/apis.d.ts +12 -0
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +833 -69
- package/dist/tsdoc-metadata.json +1 -1
- package/etc/playground-assets.api.json +9416 -2197
- package/etc/playground-assets.api.md +530 -41
- package/package.json +4 -4
@@ -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.8.22-
|
4
|
+
"version": "7.8.22-16482785086.commit-b7d3158",
|
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": "
|
38
|
+
"commit": "b7d31584c3e4eb8050f3871cc798c0a162a327fa"
|
39
39
|
}
|