@restorecommerce/protos 6.11.5 → 6.11.7
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
|
+
## [6.11.7](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.11.6...@restorecommerce/protos@6.11.7) (2025-06-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **proto:** invoice position with valid time frame as timestamp ([e913f69](https://github.com/restorecommerce/libs/commit/e913f69e32d7aff550eae3cf7d5120092d883aa5))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [6.11.6](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.11.5...@restorecommerce/protos@6.11.6) (2025-06-02)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **proto:** add currency code ([069d9cb](https://github.com/restorecommerce/libs/commit/069d9cb4c7c738d648d6f4aaf769db448ed7f904))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [6.11.5](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.11.4...@restorecommerce/protos@6.11.5) (2025-05-23)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -183,8 +183,9 @@ message Position {
|
|
|
183
183
|
optional io.restorecommerce.price.Price unit_price = 5;
|
|
184
184
|
optional uint32 quantity = 6;
|
|
185
185
|
optional io.restorecommerce.amount.Amount amount = 7;
|
|
186
|
-
optional
|
|
187
|
-
|
|
186
|
+
optional google.protobuf.Timestamp from_date = 8; // value performance from date
|
|
187
|
+
optional google.protobuf.Timestamp to_date = 9; // value performance to date
|
|
188
|
+
repeated io.restorecommerce.attribute.Attribute attributes = 10;
|
|
188
189
|
}
|
|
189
190
|
|
|
190
191
|
message ProductItem {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "6.11.
|
|
3
|
+
"version": "6.11.7",
|
|
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": "9cc6aa3ec3b1f81019076a4ce5f104f7d0ec1c58"
|
|
19
19
|
}
|