@dcl/js-runtime 7.3.1 → 7.3.2-5553973766.commit-62ae008

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 -1
  2. package/package.json +2 -2
package/apis.d.ts CHANGED
@@ -555,6 +555,7 @@ declare module "~system/EngineApi" {
555
555
  onFocus?: string | undefined;
556
556
  onBlur?: string | undefined;
557
557
  onTextSubmit?: string | undefined;
558
+ onChanged?: string | undefined;
558
559
  }
559
560
  /** CLASS_ID.UI_IMAGE_SHAPE */
560
561
  export interface ECS6ComponentUiImage {
@@ -1071,11 +1072,14 @@ declare module "~system/PortableExperiences" {
1071
1072
  status: boolean;
1072
1073
  }
1073
1074
  export interface SpawnRequest {
1074
- pid: string;
1075
+ pid?: string | undefined;
1076
+ ens?: string | undefined;
1075
1077
  }
1076
1078
  export interface SpawnResponse {
1077
1079
  pid: string;
1078
1080
  parentCid: string;
1081
+ name: string;
1082
+ ens?: string | undefined;
1079
1083
  }
1080
1084
  export interface PxRequest {
1081
1085
  pid: string;
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.1",
4
+ "version": "7.3.2-5553973766.commit-62ae008",
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": "5385d4df188c5ed28c5b03bc31e7c497b5e04342"
23
+ "commit": "62ae00805ece2d65ca4443aa07e333b016979feb"
24
24
  }