@dcl/js-runtime 7.3.31 → 7.3.32
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 +7 -0
- package/package.json +2 -2
package/apis.d.ts
CHANGED
|
@@ -34,10 +34,17 @@ declare module "~system/CommunicationsController" {
|
|
|
34
34
|
message: string;
|
|
35
35
|
}
|
|
36
36
|
export interface RealSendResponse {
|
|
37
|
+
}
|
|
38
|
+
export interface SendBinaryRequest {
|
|
39
|
+
data: Uint8Array[];
|
|
40
|
+
}
|
|
41
|
+
export interface SendBinaryResponse {
|
|
42
|
+
data: Uint8Array[];
|
|
37
43
|
}
|
|
38
44
|
|
|
39
45
|
// Function declaration section
|
|
40
46
|
export function send(body: RealSendRequest): Promise<RealSendResponse>;
|
|
47
|
+
export function sendBinary(body: SendBinaryRequest): Promise<SendBinaryResponse>;
|
|
41
48
|
|
|
42
49
|
}
|
|
43
50
|
/**
|
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.
|
|
4
|
+
"version": "7.3.32",
|
|
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": "11a21816f9bf404c90ba02782ad7e359262a909d"
|
|
24
24
|
}
|