@restorecommerce/protos 6.8.6 → 6.8.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,30 @@
|
|
|
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.8.8](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.8.7...@restorecommerce/protos@6.8.8) (2024-07-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **customer_type:** move CustomerType enum to customer.proto ([533a28f](https://github.com/restorecommerce/libs/commit/533a28f968cd3b7b8e3f57cca713c90d6092df1b))
|
|
12
|
+
* **order.proto:** add customer_type and customer_vat_id ([0885d85](https://github.com/restorecommerce/libs/commit/0885d8598b766e4088fc40b8075a860c647a5993))
|
|
13
|
+
* **order.proto:** add payment_method_id ([5517842](https://github.com/restorecommerce/libs/commit/5517842726f197d1f39ea6f93908db27f663a600))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## [6.8.7](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.8.6...@restorecommerce/protos@6.8.7) (2024-05-10)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **read:** set missing query flag for facade ([f82bbc9](https://github.com/restorecommerce/libs/commit/f82bbc986f5b8cf4e69f0e55ca83be7d7f45e2e9))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
## [6.8.6](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.8.5...@restorecommerce/protos@6.8.6) (2024-05-07)
|
|
7
31
|
|
|
8
32
|
|
|
@@ -7,12 +7,15 @@ import "io/restorecommerce/meta.proto";
|
|
|
7
7
|
import "google/protobuf/any.proto";
|
|
8
8
|
import "io/restorecommerce/auth.proto";
|
|
9
9
|
import "io/restorecommerce/status.proto";
|
|
10
|
+
import "io/restorecommerce/options.proto";
|
|
10
11
|
|
|
11
12
|
/*
|
|
12
13
|
* Microservice definition.
|
|
13
14
|
*/
|
|
14
15
|
service CredentialService {
|
|
15
|
-
rpc Read (io.restorecommerce.resourcebase.ReadRequest) returns (CredentialListResponse)
|
|
16
|
+
rpc Read (io.restorecommerce.resourcebase.ReadRequest) returns (CredentialListResponse) {
|
|
17
|
+
option (io.restorecommerce.options.is_query) = true;
|
|
18
|
+
};
|
|
16
19
|
rpc Create (CredentialList) returns (CredentialListResponse);
|
|
17
20
|
rpc Delete (io.restorecommerce.resourcebase.DeleteRequest) returns (io.restorecommerce.resourcebase.DeleteResponse);
|
|
18
21
|
rpc Update (CredentialList) returns (CredentialListResponse);
|
|
@@ -27,6 +27,12 @@ service CustomerService {
|
|
|
27
27
|
rpc Upsert (CustomerList) returns (CustomerListResponse);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
enum CustomerType {
|
|
31
|
+
PRIVATE = 0;
|
|
32
|
+
COMMERCIAL = 1;
|
|
33
|
+
PUBLIC_SECTOR = 2;
|
|
34
|
+
}
|
|
35
|
+
|
|
30
36
|
message CustomerList {
|
|
31
37
|
repeated Customer items = 1;
|
|
32
38
|
optional uint32 total_count = 2;
|
|
@@ -130,7 +130,10 @@ message Order {
|
|
|
130
130
|
optional string notification_email = 11;
|
|
131
131
|
optional string customer_order_nr = 12;
|
|
132
132
|
optional string customer_remark = 13;
|
|
133
|
-
optional io.restorecommerce.
|
|
133
|
+
optional io.restorecommerce.customer.CustomerType customer_type = 14;
|
|
134
|
+
optional string customer_vat_id = 15;
|
|
135
|
+
optional io.restorecommerce.fulfillment_product.Preferences packaging_preferences = 16;
|
|
136
|
+
optional string payment_method_id = 17;
|
|
134
137
|
}
|
|
135
138
|
|
|
136
139
|
message OrderIdList {
|
|
@@ -6,12 +6,15 @@ import "google/protobuf/any.proto";
|
|
|
6
6
|
import "google/protobuf/empty.proto";
|
|
7
7
|
import "io/restorecommerce/auth.proto";
|
|
8
8
|
import "io/restorecommerce/status.proto";
|
|
9
|
+
import "io/restorecommerce/options.proto";
|
|
9
10
|
|
|
10
11
|
// Service
|
|
11
12
|
|
|
12
13
|
service PdfRenderingService {
|
|
14
|
+
rpc Info(google.protobuf.Empty) returns (InfoResponse) {
|
|
15
|
+
option (io.restorecommerce.options.is_query) = true;
|
|
16
|
+
};
|
|
13
17
|
rpc Render(RenderRequest) returns (RenderingResponse);
|
|
14
|
-
rpc Info(google.protobuf.Empty) returns (InfoResponse);
|
|
15
18
|
}
|
|
16
19
|
|
|
17
20
|
// Requests
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "6.8.
|
|
3
|
+
"version": "6.8.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": "e6a97cde134c7a234ed41d8659dd9ca855a4b924"
|
|
19
19
|
}
|