@restorecommerce/protos 2.0.0 → 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,28 @@
|
|
|
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
|
+
|
|
17
|
+
## [2.0.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@2.0.0...@restorecommerce/protos@2.0.1) (2022-10-14)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **protos:** fix fullfillment product for missing import and commented address (does not exist) ([5780cb2](https://github.com/restorecommerce/libs/commit/5780cb245ad3f0955ba27d1b6b60659cc7e4b8d0))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [2.0.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@1.1.0...@restorecommerce/protos@2.0.0) (2022-10-12)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -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
|
}
|
|
@@ -9,6 +9,7 @@ import "io/restorecommerce/status.proto";
|
|
|
9
9
|
import "io/restorecommerce/attribute.proto";
|
|
10
10
|
import "io/restorecommerce/fulfillment_courier.proto";
|
|
11
11
|
import "io/restorecommerce/fulfillment.proto";
|
|
12
|
+
import "io/restorecommerce/options.proto";
|
|
12
13
|
|
|
13
14
|
/**
|
|
14
15
|
Microservice defination
|
|
@@ -37,8 +38,8 @@ message Preferences {
|
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
message Query {
|
|
40
|
-
io.restorecommerce.fulfillment.Address sender = 1;
|
|
41
|
-
io.restorecommerce.fulfillment.Address receiver = 2;
|
|
41
|
+
// io.restorecommerce.fulfillment.Address sender = 1;
|
|
42
|
+
// io.restorecommerce.fulfillment.Address receiver = 2;
|
|
42
43
|
repeated io.restorecommerce.fulfillment.Item goods = 3;
|
|
43
44
|
Preferences preferences = 4;
|
|
44
45
|
string reference_id = 5;
|
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
|
}
|