@restorecommerce/protos 2.0.1 → 2.0.2
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
|
+
## [2.0.2](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@2.0.1...@restorecommerce/protos@2.0.2) (2022-11-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* command import ([fcbb6c1](https://github.com/restorecommerce/libs/commit/fcbb6c15b708fc63bf38d0dfa65946731cef3e79))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [2.0.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@2.0.0...@restorecommerce/protos@2.0.1) (2022-10-14)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -4,6 +4,7 @@ package io.restorecommerce.commandinterface;
|
|
|
4
4
|
|
|
5
5
|
import "google/protobuf/any.proto";
|
|
6
6
|
import "io/restorecommerce/auth.proto";
|
|
7
|
+
import "io/restorecommerce/options.proto";
|
|
7
8
|
|
|
8
9
|
// used to send requests through Kafka or gRPC
|
|
9
10
|
message CommandRequest {
|
|
@@ -26,5 +27,6 @@ message CommandResponse {
|
|
|
26
27
|
* RPC service for executing commands
|
|
27
28
|
*/
|
|
28
29
|
service Service {
|
|
30
|
+
option (io.restorecommerce.options.service_name) = "commandinterface";
|
|
29
31
|
rpc Command(CommandRequest) returns (google.protobuf.Any);
|
|
30
32
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
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": "2ec001696f611681778a13842a9e047f1db08059"
|
|
19
19
|
}
|