@restorecommerce/protos 5.0.0 → 5.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
|
+
## [5.0.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@5.0.0...@restorecommerce/protos@5.0.1) (2023-07-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **fulfillment_product:** productQueryList uses reference_id:string instead of reference:Reference ([278afa8](https://github.com/restorecommerce/libs/commit/278afa89b5359765420744e1debca2387e366e15))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [5.0.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@4.2.0...@restorecommerce/protos@5.0.0) (2023-07-21)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -43,17 +43,14 @@ message ProductQuery {
|
|
|
43
43
|
optional io.restorecommerce.address.ShippingAddress receiver = 2;
|
|
44
44
|
repeated io.restorecommerce.fulfillment.Item items = 3;
|
|
45
45
|
optional Preferences preferences = 4;
|
|
46
|
-
|
|
47
|
-
* A forigner_key using the following pattern: `${collection}/${id}`
|
|
48
|
-
* most likly an order_id or fulfillment_id.
|
|
49
|
-
*/
|
|
50
|
-
optional string reference_id = 5;
|
|
46
|
+
optional string reference = 5;
|
|
51
47
|
}
|
|
52
48
|
|
|
53
49
|
message ProductQueryList {
|
|
54
50
|
repeated ProductQuery items = 1;
|
|
55
51
|
optional uint32 total_count = 2;
|
|
56
52
|
io.restorecommerce.auth.Subject subject = 3;
|
|
53
|
+
optional io.restorecommerce.reference.Reference reference = 4;
|
|
57
54
|
}
|
|
58
55
|
|
|
59
56
|
message FulfillmentProduct {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.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": "
|
|
18
|
+
"gitHead": "40b9b296f7a67f4003279130b4ce5d63e0c406a0"
|
|
19
19
|
}
|