@restorecommerce/protos 6.11.7 → 6.11.9

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,29 @@
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.9](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.11.8...@restorecommerce/protos@6.11.9) (2025-08-21)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **protos:** add name and descrp to customer ([3a496d1](https://github.com/restorecommerce/libs/commit/3a496d1dd49d82fd5c65881966272973c2dbc7d3))
12
+
13
+
14
+
15
+
16
+
17
+ ## [6.11.8](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.11.7...@restorecommerce/protos@6.11.8) (2025-08-12)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **protos:** add customer-vat-id to invoice ([716b724](https://github.com/restorecommerce/libs/commit/716b724d54591c64cd16b7fcd540e3df6271a1bf))
23
+ * **protos:** fulfillment add render func, invoice needs shipping address ([87ea330](https://github.com/restorecommerce/libs/commit/87ea330a27c3486058a9c515f89a40f227261941))
24
+
25
+
26
+
27
+
28
+
6
29
  ## [6.11.7](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.11.6...@restorecommerce/protos@6.11.7) (2025-06-04)
7
30
 
8
31
 
@@ -67,6 +67,8 @@ message Customer {
67
67
  field_name: "setting",
68
68
  }
69
69
  ];
70
+ optional string name = 7; // display name!
71
+ optional string description = 8;
70
72
  }
71
73
 
72
74
  message Private {
@@ -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.BillingAddress sender = 10;
157
- optional io.restorecommerce.address.BillingAddress recipient = 11;
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.7",
3
+ "version": "6.11.9",
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": "9cc6aa3ec3b1f81019076a4ce5f104f7d0ec1c58"
18
+ "gitHead": "5c659f5b8e79b316c23071b3f4560ab7bce8e0d3"
19
19
  }