@restorecommerce/protos 6.1.2 → 6.2.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,39 @@
|
|
|
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
|
+
## [6.2.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.2.0...@restorecommerce/protos@6.2.1) (2023-11-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **protos:** update order kafka topic ([d302554](https://github.com/restorecommerce/libs/commit/d30255408bfc4246478457fbd780fbcbb6d8aa5b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [6.2.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.1.2...@restorecommerce/protos@6.2.0) (2023-10-14)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **proto:** fix user proto ([edbcd77](https://github.com/restorecommerce/libs/commit/edbcd77af9db0de1f1fab90148740983b42a6b3a))
|
|
23
|
+
* **proto:** update user proto to provide google protobuf any data for register request ([3b2e871](https://github.com/restorecommerce/libs/commit/3b2e871f839dd1cffb6ff1cea037911d3ae0aa9c))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Features
|
|
27
|
+
|
|
28
|
+
* **acs-decorators:** add decorators for simple access control ([713a464](https://github.com/restorecommerce/libs/commit/713a46409c79371d7b0940cb4aa448cbe8abaf5a))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Reverts
|
|
32
|
+
|
|
33
|
+
* **access_control.proto:** revert enum order ([8aaa4e6](https://github.com/restorecommerce/libs/commit/8aaa4e63675ec2bd040602236ff82b0fe80e6d14))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
6
39
|
## [6.1.2](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.1.1...@restorecommerce/protos@6.1.2) (2023-09-28)
|
|
7
40
|
|
|
8
41
|
**Note:** Version bump only for package @restorecommerce/protos
|
|
@@ -88,7 +88,7 @@ message Item {
|
|
|
88
88
|
message Order {
|
|
89
89
|
option (restorecommerce.options.kafka_subscriber) = {
|
|
90
90
|
plural: "orders"
|
|
91
|
-
topic: "io.restorecommerce.
|
|
91
|
+
topic: "io.restorecommerce.ordering.resource"
|
|
92
92
|
created: "orderCreated"
|
|
93
93
|
updated: "orderUpdated"
|
|
94
94
|
deleted: "orderDeleted"
|
|
@@ -105,7 +105,8 @@ message RegisterRequest {
|
|
|
105
105
|
optional string default_scope = 11; // default hierarchical scope
|
|
106
106
|
optional UserType user_type = 12;
|
|
107
107
|
optional string captcha_code = 13;
|
|
108
|
-
|
|
108
|
+
optional google.protobuf.Any data = 14; // data
|
|
109
|
+
}
|
|
109
110
|
|
|
110
111
|
message ActivateRequest {
|
|
111
112
|
optional string identifier = 1; /// user name or email
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "6.1
|
|
3
|
+
"version": "6.2.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": "
|
|
18
|
+
"gitHead": "c8116eca2ff370e99543a349ca30c7d1f8ae551a"
|
|
19
19
|
}
|