@dcl/js-runtime 7.23.3 → 7.23.4-26110424113.commit-4b40cec

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 +6 -0
  2. package/package.json +2 -2
package/apis.d.ts CHANGED
@@ -1293,6 +1293,7 @@ declare module "~system/RestrictedActions" {
1293
1293
  }
1294
1294
  export interface TriggerEmoteRequest {
1295
1295
  predefinedEmote: string;
1296
+ mask?: number | undefined;
1296
1297
  }
1297
1298
  export interface ChangeRealmRequest {
1298
1299
  realm: string;
@@ -1312,6 +1313,7 @@ declare module "~system/RestrictedActions" {
1312
1313
  export interface TriggerSceneEmoteRequest {
1313
1314
  src: string;
1314
1315
  loop?: boolean | undefined;
1316
+ mask?: number | undefined;
1315
1317
  }
1316
1318
  export interface SuccessResponse {
1317
1319
  success: boolean;
@@ -1327,6 +1329,8 @@ declare module "~system/RestrictedActions" {
1327
1329
  text: string;
1328
1330
  }
1329
1331
  export interface EmptyResponse {
1332
+ }
1333
+ export interface StopEmoteRequest {
1330
1334
  }
1331
1335
 
1332
1336
  // Function declaration section
@@ -1355,6 +1359,8 @@ declare module "~system/RestrictedActions" {
1355
1359
  export function triggerSceneEmote(body: TriggerSceneEmoteRequest): Promise<SuccessResponse>;
1356
1360
  /** CopyToClipboard copies the provided text into the clipboard */
1357
1361
  export function copyToClipboard(body: CopyToClipboardRequest): Promise<EmptyResponse>;
1362
+ /** StopEmote will stop the current emote */
1363
+ export function stopEmote(body: StopEmoteRequest): Promise<SuccessResponse>;
1358
1364
 
1359
1365
  }
1360
1366
  /**
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.23.3",
4
+ "version": "7.23.4-26110424113.commit-4b40cec",
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": "04270ca53739efce812dbb00973a070c002c8171"
23
+ "commit": "4b40cecb57de72e7f621c501ee058b6a35e28873"
24
24
  }