@restorecommerce/protos 0.6.3 → 0.6.6
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,36 @@
|
|
|
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.6](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@0.6.5...@restorecommerce/protos@0.6.6) (2022-04-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @restorecommerce/protos
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.6.5](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@0.6.4...@restorecommerce/protos@0.6.5) (2022-03-29)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **protos:** updated invoice proto ([c927dae](https://github.com/restorecommerce/libs/commit/c927dae3ee9a4b8f47b0844feaa615a15a7f1afd))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [0.6.4](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@0.6.3...@restorecommerce/protos@0.6.4) (2022-02-22)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **protos:** add token to code exchange ([9c17cb6](https://github.com/restorecommerce/libs/commit/9c17cb6e3a16761a85a4b9379c3c6996cc5422e8))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
## [0.6.3](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@0.6.0...@restorecommerce/protos@0.6.3) (2022-02-14)
|
|
7
37
|
|
|
8
38
|
|
|
@@ -95,6 +95,8 @@ message BillingAddress {
|
|
|
95
95
|
string telephone = 9;
|
|
96
96
|
string timezone = 10;
|
|
97
97
|
string economic_area = 11;
|
|
98
|
+
string locality = 12;
|
|
99
|
+
string organization_name = 13;
|
|
98
100
|
}
|
|
99
101
|
|
|
100
102
|
message InvoicePosition {
|
|
@@ -105,15 +107,15 @@ message InvoicePosition {
|
|
|
105
107
|
|
|
106
108
|
message InvoiceRow {
|
|
107
109
|
string product = 1;
|
|
108
|
-
|
|
110
|
+
double pricePerUnit = 2;
|
|
109
111
|
uint32 quantity = 3;
|
|
110
112
|
string vat = 4;
|
|
111
|
-
|
|
113
|
+
double amount = 5;
|
|
112
114
|
}
|
|
113
115
|
|
|
114
116
|
message InvoicePrice {
|
|
115
|
-
|
|
116
|
-
|
|
117
|
+
double gross = 1;
|
|
118
|
+
double net = 2;
|
|
117
119
|
}
|
|
118
120
|
|
|
119
121
|
message TriggerInvoices {
|
|
@@ -2,6 +2,7 @@ syntax = "proto3";
|
|
|
2
2
|
|
|
3
3
|
package io.restorecommerce.oauth;
|
|
4
4
|
|
|
5
|
+
import "io/restorecommerce/auth.proto";
|
|
5
6
|
import "io/restorecommerce/user.proto";
|
|
6
7
|
import "google/protobuf/empty.proto";
|
|
7
8
|
|
|
@@ -28,4 +29,5 @@ message ExchangeCodeRequest {
|
|
|
28
29
|
message ExchangeCodeResponse {
|
|
29
30
|
io.restorecommerce.user.UserResponse user = 1;
|
|
30
31
|
string email = 2;
|
|
32
|
+
io.restorecommerce.auth.Tokens token = 3;
|
|
31
33
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6",
|
|
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": "93ec5c59ff01e0292c56bb5161f63bb0df7e027b"
|
|
19
19
|
}
|