@restorecommerce/protos 6.10.2 → 6.10.3

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,17 @@
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.10.3](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.10.2...@restorecommerce/protos@6.10.3) (2024-11-20)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **protos:** mark ordering EvaluateFulfillment and QueryFulfillmentSolution as Query ([4ab2e7e](https://github.com/restorecommerce/libs/commit/4ab2e7ed2eb3ecb520a669772a835b05482bcce0))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [6.10.2](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.10.1...@restorecommerce/protos@6.10.2) (2024-11-19)
7
18
 
8
19
 
@@ -41,9 +41,13 @@ service OrderService {
41
41
 
42
42
  // Requires Fulfillment Service
43
43
  // Evaluates plausibility of the Fulfillment that would result from given order.
44
- rpc EvaluateFulfillment (OrderList) returns (io.restorecommerce.status.StatusListResponse);
44
+ rpc EvaluateFulfillment (OrderList) returns (io.restorecommerce.status.StatusListResponse) {
45
+ option (io.restorecommerce.options.is_query) = true;
46
+ };
45
47
  // Requires Fulfillment Service
46
- rpc QueryFulfillmentSolution (FulfillmentRequestList) returns (io.restorecommerce.fulfillment_product.FulfillmentSolutionListResponse);
48
+ rpc QueryFulfillmentSolution (FulfillmentRequestList) returns (io.restorecommerce.fulfillment_product.FulfillmentSolutionListResponse) {
49
+ option (io.restorecommerce.options.is_query) = true;
50
+ };
47
51
  // Requires Fulfillment Service
48
52
  rpc CreateFulfillment (FulfillmentRequestList) returns (io.restorecommerce.fulfillment.FulfillmentListResponse);
49
53
  // Requires Fulfillment Service
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restorecommerce/protos",
3
- "version": "6.10.2",
3
+ "version": "6.10.3",
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": "7ea840b9a39a84221970535b1f0f4e805a928664"
18
+ "gitHead": "07b0c45a94df93d89cdb04db2b0c893d6160adfa"
19
19
  }