@restorecommerce/protos 0.6.4 → 0.6.5
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 +11 -0
- package/io/restorecommerce/invoice.proto +4 -4
- package/package.json +2 -2
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
|
+
## [0.6.5](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@0.6.4...@restorecommerce/protos@0.6.5) (2022-03-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **protos:** updated invoice proto ([c927dae](https://github.com/restorecommerce/libs/commit/c927dae3ee9a4b8f47b0844feaa615a15a7f1afd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.6.4](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@0.6.3...@restorecommerce/protos@0.6.4) (2022-02-22)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -105,15 +105,15 @@ message InvoicePosition {
|
|
|
105
105
|
|
|
106
106
|
message InvoiceRow {
|
|
107
107
|
string product = 1;
|
|
108
|
-
|
|
108
|
+
double pricePerUnit = 2;
|
|
109
109
|
uint32 quantity = 3;
|
|
110
110
|
string vat = 4;
|
|
111
|
-
|
|
111
|
+
double amount = 5;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
message InvoicePrice {
|
|
115
|
-
|
|
116
|
-
|
|
115
|
+
double gross = 1;
|
|
116
|
+
double net = 2;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
message TriggerInvoices {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.5",
|
|
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": "971b655c0ca23f4d0a2ad9d4d8a697df575d4bf2"
|
|
19
19
|
}
|