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