@dcl/js-runtime 7.22.3 → 7.22.4-24244806167.commit-6559014
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 -0
- package/package.json +2 -2
package/apis.d.ts
CHANGED
|
@@ -1263,6 +1263,7 @@ declare module "~system/RestrictedActions" {
|
|
|
1263
1263
|
}
|
|
1264
1264
|
export interface TriggerEmoteRequest {
|
|
1265
1265
|
predefinedEmote: string;
|
|
1266
|
+
mask?: number | undefined;
|
|
1266
1267
|
}
|
|
1267
1268
|
export interface ChangeRealmRequest {
|
|
1268
1269
|
realm: string;
|
|
@@ -1282,6 +1283,7 @@ declare module "~system/RestrictedActions" {
|
|
|
1282
1283
|
export interface TriggerSceneEmoteRequest {
|
|
1283
1284
|
src: string;
|
|
1284
1285
|
loop?: boolean | undefined;
|
|
1286
|
+
mask?: number | undefined;
|
|
1285
1287
|
}
|
|
1286
1288
|
export interface SuccessResponse {
|
|
1287
1289
|
success: boolean;
|
|
@@ -1297,6 +1299,8 @@ declare module "~system/RestrictedActions" {
|
|
|
1297
1299
|
text: string;
|
|
1298
1300
|
}
|
|
1299
1301
|
export interface EmptyResponse {
|
|
1302
|
+
}
|
|
1303
|
+
export interface StopEmoteRequest {
|
|
1300
1304
|
}
|
|
1301
1305
|
|
|
1302
1306
|
// Function declaration section
|
|
@@ -1325,6 +1329,8 @@ declare module "~system/RestrictedActions" {
|
|
|
1325
1329
|
export function triggerSceneEmote(body: TriggerSceneEmoteRequest): Promise<SuccessResponse>;
|
|
1326
1330
|
/** CopyToClipboard copies the provided text into the clipboard */
|
|
1327
1331
|
export function copyToClipboard(body: CopyToClipboardRequest): Promise<EmptyResponse>;
|
|
1332
|
+
/** StopEmote will stop the current emote */
|
|
1333
|
+
export function stopEmote(body: StopEmoteRequest): Promise<SuccessResponse>;
|
|
1328
1334
|
|
|
1329
1335
|
}
|
|
1330
1336
|
/**
|
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.22.
|
|
4
|
+
"version": "7.22.4-24244806167.commit-6559014",
|
|
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": "6559014d9d29a8d8bab1bbff430ce3397f1d3f66"
|
|
24
24
|
}
|