@restorecommerce/protos 6.8.5 → 6.8.7

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.8.7](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.8.6...@restorecommerce/protos@6.8.7) (2024-05-10)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **read:** set missing query flag for facade ([f82bbc9](https://github.com/restorecommerce/libs/commit/f82bbc986f5b8cf4e69f0e55ca83be7d7f45e2e9))
12
+
13
+
14
+
15
+
16
+
17
+ ## [6.8.6](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.8.5...@restorecommerce/protos@6.8.6) (2024-05-07)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **fulfillment_courier:** add credential_id ([f9a4608](https://github.com/restorecommerce/libs/commit/f9a4608289d2ae6b7b76346e39c550a05b2b7eb4))
23
+ * **protos:** notification and notification_channel proto files ([a98ad17](https://github.com/restorecommerce/libs/commit/a98ad17181c1dd69779be37c1250f4ad336f9a43))
24
+
25
+
26
+
27
+
28
+
6
29
  ## [6.8.5](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.8.4...@restorecommerce/protos@6.8.5) (2024-04-26)
7
30
 
8
31
 
@@ -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);
@@ -51,7 +51,8 @@ message FulfillmentCourier {
51
51
  optional string logo = 6;
52
52
  optional string website = 7;
53
53
  optional string stub_type = 8;
54
- optional google.protobuf.Any configuration = 9;
54
+ optional string credential_id = 9;
55
+ optional google.protobuf.Any configuration = 10;
55
56
  }
56
57
 
57
58
  message FulfillmentCourierList {
@@ -36,7 +36,7 @@ message NotificationListResponse {
36
36
  }
37
37
 
38
38
  message NotificationResponse {
39
- optional Notification items = 1;
39
+ optional Notification payload = 1;
40
40
  optional io.restorecommerce.status.Status status = 2;
41
41
  }
42
42
 
@@ -33,7 +33,7 @@ message NotificationChannelListResponse {
33
33
  }
34
34
 
35
35
  message NotificationChannelResponse {
36
- optional NotificationChannel items = 1;
36
+ optional NotificationChannel payload = 1;
37
37
  optional io.restorecommerce.status.Status status = 2;
38
38
  }
39
39
 
@@ -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.5",
3
+ "version": "6.8.7",
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": "dfda5ac80327ab080ed2f183162267a769a66076"
18
+ "gitHead": "7d4d05210108d3ec7e00345a5d5926713625c6b6"
19
19
  }