@dcl/js-runtime 7.22.4-24525731607.commit-cda77a9 → 7.22.5-24776890516.commit-b10e9ab

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 +0 -11
  2. package/package.json +2 -2
package/apis.d.ts CHANGED
@@ -97,11 +97,6 @@ declare module "~system/EngineApi" {
97
97
  b: number;
98
98
  a: number;
99
99
  }
100
- /** A range of Color4 values. Randomized or lerped between start and end. */
101
- export interface ColorRange {
102
- start: Color4 | undefined;
103
- end: Color4 | undefined;
104
- }
105
100
 
106
101
  // Function declaration section
107
102
  export interface ECS6Color4 {
@@ -1263,7 +1258,6 @@ declare module "~system/RestrictedActions" {
1263
1258
  }
1264
1259
  export interface TriggerEmoteRequest {
1265
1260
  predefinedEmote: string;
1266
- mask?: number | undefined;
1267
1261
  }
1268
1262
  export interface ChangeRealmRequest {
1269
1263
  realm: string;
@@ -1283,7 +1277,6 @@ declare module "~system/RestrictedActions" {
1283
1277
  export interface TriggerSceneEmoteRequest {
1284
1278
  src: string;
1285
1279
  loop?: boolean | undefined;
1286
- mask?: number | undefined;
1287
1280
  }
1288
1281
  export interface SuccessResponse {
1289
1282
  success: boolean;
@@ -1299,8 +1292,6 @@ declare module "~system/RestrictedActions" {
1299
1292
  text: string;
1300
1293
  }
1301
1294
  export interface EmptyResponse {
1302
- }
1303
- export interface StopEmoteRequest {
1304
1295
  }
1305
1296
 
1306
1297
  // Function declaration section
@@ -1329,8 +1320,6 @@ declare module "~system/RestrictedActions" {
1329
1320
  export function triggerSceneEmote(body: TriggerSceneEmoteRequest): Promise<SuccessResponse>;
1330
1321
  /** CopyToClipboard copies the provided text into the clipboard */
1331
1322
  export function copyToClipboard(body: CopyToClipboardRequest): Promise<EmptyResponse>;
1332
- /** StopEmote will stop the current emote */
1333
- export function stopEmote(body: StopEmoteRequest): Promise<SuccessResponse>;
1334
1323
 
1335
1324
  }
1336
1325
  /**
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-24525731607.commit-cda77a9",
4
+ "version": "7.22.5-24776890516.commit-b10e9ab",
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": "cda77a9b5910df752b6116868df54b7c75df2999"
23
+ "commit": "b10e9abdf4afd09b5c4cf0abc3e86eb6ed035ab0"
24
24
  }