@dcl/js-runtime 7.3.2-5643871152.commit-4a5c96a → 7.3.2

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 +5 -0
  2. package/package.json +2 -2
package/apis.d.ts CHANGED
@@ -1154,6 +1154,10 @@ declare module "~system/RestrictedActions" {
1154
1154
  export interface CommsAdapterRequest {
1155
1155
  connectionString: string;
1156
1156
  }
1157
+ export interface TriggerSceneEmoteRequest {
1158
+ src: string;
1159
+ loop?: boolean | undefined;
1160
+ }
1157
1161
  export interface SuccessResponse {
1158
1162
  success: boolean;
1159
1163
  }
@@ -1172,6 +1176,7 @@ declare module "~system/RestrictedActions" {
1172
1176
  export function openExternalUrl(body: OpenExternalUrlRequest): Promise<SuccessResponse>;
1173
1177
  export function openNftDialog(body: OpenNftDialogRequest): Promise<SuccessResponse>;
1174
1178
  export function setCommunicationsAdapter(body: CommsAdapterRequest): Promise<SuccessResponse>;
1179
+ export function triggerSceneEmote(body: TriggerSceneEmoteRequest): Promise<SuccessResponse>;
1175
1180
 
1176
1181
  }
1177
1182
  /**
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.3.2-5643871152.commit-4a5c96a",
4
+ "version": "7.3.2",
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": "4a5c96af5d1c27016dfb327674886c95d479808a"
23
+ "commit": "7cd3d38ed14f6f4bf46ef4e481fcaf1a0df0bfd1"
24
24
  }