@dcl/ecs 7.3.26 → 7.3.27-6730660340.commit-f58fd69

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.
@@ -4,6 +4,8 @@ import _m0 from "protobufjs/minimal";
4
4
  */
5
5
  export interface PBUiInputResult {
6
6
  value: string;
7
+ /** default: false */
8
+ isSubmit?: boolean | undefined;
7
9
  }
8
10
  /**
9
11
  * @public
@@ -2,7 +2,7 @@
2
2
  import _m0 from "protobufjs/minimal";
3
3
  const protobufPackageSarasa = "decentraland.sdk.components";
4
4
  function createBasePBUiInputResult() {
5
- return { value: "" };
5
+ return { value: "", isSubmit: undefined };
6
6
  }
7
7
  /**
8
8
  * @public
@@ -13,6 +13,9 @@ export var PBUiInputResult;
13
13
  if (message.value !== "") {
14
14
  writer.uint32(10).string(message.value);
15
15
  }
16
+ if (message.isSubmit !== undefined) {
17
+ writer.uint32(16).bool(message.isSubmit);
18
+ }
16
19
  return writer;
17
20
  }
18
21
  PBUiInputResult.encode = encode;
@@ -29,6 +32,12 @@ export var PBUiInputResult;
29
32
  }
30
33
  message.value = reader.string();
31
34
  continue;
35
+ case 2:
36
+ if (tag !== 16) {
37
+ break;
38
+ }
39
+ message.isSubmit = reader.bool();
40
+ continue;
32
41
  }
33
42
  if ((tag & 7) === 4 || tag === 0) {
34
43
  break;
@@ -4,6 +4,8 @@ import _m0 from "protobufjs/minimal";
4
4
  */
5
5
  export interface PBUiInputResult {
6
6
  value: string;
7
+ /** default: false */
8
+ isSubmit?: boolean | undefined;
7
9
  }
8
10
  /**
9
11
  * @public
@@ -8,7 +8,7 @@ exports.PBUiInputResult = void 0;
8
8
  const minimal_1 = __importDefault(require("protobufjs/minimal"));
9
9
  const protobufPackageSarasa = "decentraland.sdk.components";
10
10
  function createBasePBUiInputResult() {
11
- return { value: "" };
11
+ return { value: "", isSubmit: undefined };
12
12
  }
13
13
  /**
14
14
  * @public
@@ -19,6 +19,9 @@ var PBUiInputResult;
19
19
  if (message.value !== "") {
20
20
  writer.uint32(10).string(message.value);
21
21
  }
22
+ if (message.isSubmit !== undefined) {
23
+ writer.uint32(16).bool(message.isSubmit);
24
+ }
22
25
  return writer;
23
26
  }
24
27
  PBUiInputResult.encode = encode;
@@ -35,6 +38,12 @@ var PBUiInputResult;
35
38
  }
36
39
  message.value = reader.string();
37
40
  continue;
41
+ case 2:
42
+ if (tag !== 16) {
43
+ break;
44
+ }
45
+ message.isSubmit = reader.bool();
46
+ continue;
38
47
  }
39
48
  if ((tag & 7) === 4 || tag === 0) {
40
49
  break;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/ecs",
3
3
  "description": "Decentraland ECS",
4
- "version": "7.3.26",
4
+ "version": "7.3.27-6730660340.commit-f58fd69",
5
5
  "author": "DCL",
6
6
  "bugs": "https://github.com/decentraland/ecs/issues",
7
7
  "files": [
@@ -33,5 +33,5 @@
33
33
  },
34
34
  "types": "./dist/index.d.ts",
35
35
  "typings": "./dist/index.d.ts",
36
- "commit": "46ced7f69956231d5cd583ea8bedd46efac38574"
36
+ "commit": "f58fd69f1dc7178d6d26b86cf6fe6243f1e9328b"
37
37
  }