@restorecommerce/protos 6.11.7 → 6.11.8
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,18 @@
|
|
|
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.8](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.11.7...@restorecommerce/protos@6.11.8) (2025-08-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **protos:** add customer-vat-id to invoice ([716b724](https://github.com/restorecommerce/libs/commit/716b724d54591c64cd16b7fcd540e3df6271a1bf))
|
|
12
|
+
* **protos:** fulfillment add render func, invoice needs shipping address ([87ea330](https://github.com/restorecommerce/libs/commit/87ea330a27c3486058a9c515f89a40f227261941))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## [6.11.7](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.11.6...@restorecommerce/protos@6.11.7) (2025-06-04)
|
|
7
19
|
|
|
8
20
|
|
|
@@ -79,6 +79,11 @@ service FulfillmentService {
|
|
|
79
79
|
*/
|
|
80
80
|
rpc Delete (io.restorecommerce.resourcebase.DeleteRequest) returns (io.restorecommerce.resourcebase.DeleteResponse);
|
|
81
81
|
|
|
82
|
+
/**
|
|
83
|
+
* Evaluate and (re-)Render fulfillments as PDF to ostorage. (creates if not exist, updates if id is given)
|
|
84
|
+
*/
|
|
85
|
+
rpc Render (FulfillmentList) returns (FulfillmentListResponse);
|
|
86
|
+
|
|
82
87
|
/**
|
|
83
88
|
Requires Invoice Service
|
|
84
89
|
*/
|
|
@@ -249,6 +254,7 @@ message Fulfillment {
|
|
|
249
254
|
repeated Tracking trackings = 9; //set by service
|
|
250
255
|
repeated io.restorecommerce.amount.Amount total_amounts = 10; //set by service
|
|
251
256
|
optional FulfillmentState fulfillment_state = 11; //set by service
|
|
257
|
+
repeated io.restorecommerce.file.File documents = 12; // url to rendered PDFs
|
|
252
258
|
}
|
|
253
259
|
|
|
254
260
|
message FulfillmentList {
|
|
@@ -153,8 +153,8 @@ message Invoice {
|
|
|
153
153
|
]; // shop_number --- ref. to sender orga
|
|
154
154
|
optional google.protobuf.Timestamp timestamp = 8;
|
|
155
155
|
optional PaymentState payment_state = 9;
|
|
156
|
-
optional io.restorecommerce.address.
|
|
157
|
-
optional io.restorecommerce.address.
|
|
156
|
+
optional io.restorecommerce.address.ShippingAddress sender = 10;
|
|
157
|
+
optional io.restorecommerce.address.ShippingAddress recipient = 11;
|
|
158
158
|
repeated Section sections = 12;
|
|
159
159
|
repeated io.restorecommerce.amount.Amount total_amounts = 13;
|
|
160
160
|
repeated string payment_hints = 14;
|
|
@@ -164,6 +164,8 @@ message Invoice {
|
|
|
164
164
|
optional bool sent = 18;
|
|
165
165
|
optional bool withdrawn = 19;
|
|
166
166
|
optional string customer_order_number = 20;
|
|
167
|
+
optional string customer_vat_id = 21;
|
|
168
|
+
optional io.restorecommerce.address.BillingAddress billing_address = 22;
|
|
167
169
|
}
|
|
168
170
|
|
|
169
171
|
message Section {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "6.11.
|
|
3
|
+
"version": "6.11.8",
|
|
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": "4a3818fc5d12cb0ea92fa30aca79355e9274da7f"
|
|
19
19
|
}
|