@restorecommerce/protos 6.8.4 → 6.8.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,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.6](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.8.5...@restorecommerce/protos@6.8.6) (2024-05-07)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **fulfillment_courier:** add credential_id ([f9a4608](https://github.com/restorecommerce/libs/commit/f9a4608289d2ae6b7b76346e39c550a05b2b7eb4))
12
+ * **protos:** notification and notification_channel proto files ([a98ad17](https://github.com/restorecommerce/libs/commit/a98ad17181c1dd69779be37c1250f4ad336f9a43))
13
+
14
+
15
+
16
+
17
+
18
+ ## [6.8.5](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.8.4...@restorecommerce/protos@6.8.5) (2024-04-26)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **facade:** add templates, fix rc-grpc-client generate command ([a029445](https://github.com/restorecommerce/libs/commit/a029445c2a91226bfc1453a41913f7a95c9264fa))
24
+
25
+
26
+
27
+
28
+
6
29
  ## [6.8.4](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.8.3...@restorecommerce/protos@6.8.4) (2024-04-25)
7
30
 
8
31
 
@@ -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
 
@@ -94,12 +94,12 @@ message ResponsePayloadWithStatus {
94
94
 
95
95
  message ResponsePayload {
96
96
  oneof response {
97
- ResponsePDF pdf = 1;
97
+ ResponsePdf pdf = 1;
98
98
  ResponseS3Upload upload_result = 2;
99
99
  }
100
100
  }
101
101
 
102
- message ResponsePDF {
102
+ message ResponsePdf {
103
103
  bytes data = 1;
104
104
  }
105
105
 
@@ -125,10 +125,10 @@ message InfoResponse {
125
125
  // Puppeteer
126
126
 
127
127
  message PuppeteerOptions {
128
- optional PDFOptions pdf_options = 1;
128
+ optional PdfOptions pdf_options = 1;
129
129
  }
130
130
 
131
- message PDFOptions {
131
+ message PdfOptions {
132
132
  enum PaperFormat {
133
133
  A0 = 0;
134
134
  A1 = 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restorecommerce/protos",
3
- "version": "6.8.4",
3
+ "version": "6.8.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": "030d775589522985f76cb4aab874c32f6277835b"
18
+ "gitHead": "d9fc017544c99025563fab0452c8cb6913427b70"
19
19
  }