@restorecommerce/protos 0.7.1 → 0.7.2

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
+ ## [0.7.2](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@0.7.1...@restorecommerce/protos@0.7.2) (2022-06-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * remove optional from protos ([dee7264](https://github.com/restorecommerce/libs/commit/dee7264ec862bbe7fa5ada55dcb3fd9227e06ef8))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.7.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@0.7.0...@restorecommerce/protos@0.7.1) (2022-06-14)
7
18
 
8
19
 
@@ -5,15 +5,15 @@ import "google/protobuf/descriptor.proto";
5
5
  package io.restorecommerce.options;
6
6
 
7
7
  extend google.protobuf.FieldOptions {
8
- optional Resolver resolver = 31000;
8
+ Resolver resolver = 31000;
9
9
  }
10
10
 
11
11
  extend google.protobuf.MethodOptions {
12
- optional bool is_query = 31001;
12
+ bool is_query = 31001;
13
13
  }
14
14
 
15
15
  extend google.protobuf.ServiceOptions {
16
- optional string service_name = 31002;
16
+ string service_name = 31002;
17
17
  }
18
18
 
19
19
  message Resolver {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restorecommerce/protos",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
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": "9e47e66363c23ec7d9ecb0068a529fdac4cb3a7d"
18
+ "gitHead": "b17ad8be6c9df59d7966a755b2a50f1734a02b5f"
19
19
  }