@restorecommerce/protos 4.0.0 → 4.0.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.0.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@4.0.0...@restorecommerce/protos@4.0.1) (2023-06-29)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **protos:** Make name, email and password mandatory for register request ([64165c1](https://github.com/restorecommerce/libs/commit/64165c1875fe1c9ccd319513671334b625dce20c))
12
+
13
+
14
+
15
+
16
+
6
17
  # [4.0.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@3.1.2...@restorecommerce/protos@4.0.0) (2023-06-28)
7
18
 
8
19
 
@@ -94,11 +94,11 @@ message RegisterRequest {
94
94
  optional string id = 1;
95
95
  optional bool guest = 2;
96
96
  optional io.restorecommerce.meta.Meta meta = 3;
97
- optional string name = 4;
97
+ string name = 4;
98
98
  optional string first_name = 5;
99
99
  optional string last_name = 6;
100
- optional string email = 7;
101
- optional string password = 8;
100
+ string email = 7;
101
+ string password = 8;
102
102
  optional string timezone_id = 9;
103
103
  optional string locale_id = 10;
104
104
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restorecommerce/protos",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Protobuf descriptors for Restorecommerce services",
5
5
  "author": "n-fuse GmbH",
6
6
  "repository": {
@@ -15,5 +15,5 @@
15
15
  "protobufs"
16
16
  ],
17
17
  "scripts": {},
18
- "gitHead": "a6f633f4c1f61773ce6a93b9a9720cd00d3c005f"
18
+ "gitHead": "47e9cd820ed04044a952713d3c8c895c045bc702"
19
19
  }