@dcl/js-runtime 7.24.5-28985208893.commit-8caf648 → 7.24.5-28985931443.commit-4a0bcfc
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 +4 -0
- package/package.json +2 -2
package/apis.d.ts
CHANGED
|
@@ -1336,6 +1336,8 @@ declare module "~system/RestrictedActions" {
|
|
|
1336
1336
|
text: string;
|
|
1337
1337
|
}
|
|
1338
1338
|
export interface EmptyResponse {
|
|
1339
|
+
}
|
|
1340
|
+
export interface StopEmoteRequest {
|
|
1339
1341
|
}
|
|
1340
1342
|
|
|
1341
1343
|
// Function declaration section
|
|
@@ -1364,6 +1366,8 @@ declare module "~system/RestrictedActions" {
|
|
|
1364
1366
|
export function triggerSceneEmote(body: TriggerSceneEmoteRequest): Promise<SuccessResponse>;
|
|
1365
1367
|
/** CopyToClipboard copies the provided text into the clipboard */
|
|
1366
1368
|
export function copyToClipboard(body: CopyToClipboardRequest): Promise<EmptyResponse>;
|
|
1369
|
+
/** StopEmote will stop the current emote */
|
|
1370
|
+
export function stopEmote(body: StopEmoteRequest): Promise<SuccessResponse>;
|
|
1367
1371
|
|
|
1368
1372
|
}
|
|
1369
1373
|
/**
|
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.24.5-
|
|
4
|
+
"version": "7.24.5-28985931443.commit-4a0bcfc",
|
|
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": "4a0bcfc7d1817060e47ede9c11ba01e386648a25"
|
|
24
24
|
}
|