@restorecommerce/protos 6.8.8 → 6.8.9

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.8.9](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.8.8...@restorecommerce/protos@6.8.9) (2024-08-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **oauth:** flag oauth queries, make shop domain repeatable ([7d3eaac](https://github.com/restorecommerce/libs/commit/7d3eaac1037729adf2ba5dc1bbef2021ca56fac6))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [6.8.8](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.8.7...@restorecommerce/protos@6.8.8) (2024-07-24)
7
18
 
8
19
 
@@ -5,13 +5,20 @@ package io.restorecommerce.oauth;
5
5
  import "io/restorecommerce/auth.proto";
6
6
  import "io/restorecommerce/user.proto";
7
7
  import "io/restorecommerce/status.proto";
8
+ import "io/restorecommerce/options.proto";
8
9
  import "google/protobuf/empty.proto";
9
10
 
10
11
  service OAuthService {
11
- rpc AvailableServices(google.protobuf.Empty) returns (ServicesResponse);
12
- rpc GenerateLinks(google.protobuf.Empty) returns (GenerateLinksResponse);
12
+ rpc GenerateLinks(google.protobuf.Empty) returns (GenerateLinksResponse) {
13
+ option (io.restorecommerce.options.is_query) = true;
14
+ };
15
+ rpc GetToken(GetTokenRequest) returns (GetTokenResponse) {
16
+ option (io.restorecommerce.options.is_query) = true;
17
+ };
18
+ rpc AvailableServices(google.protobuf.Empty) returns (ServicesResponse){
19
+ option (io.restorecommerce.options.is_query) = true;
20
+ };
13
21
  rpc ExchangeCode(ExchangeCodeRequest) returns (ExchangeCodeResponse);
14
- rpc GetToken(GetTokenRequest) returns (GetTokenResponse);
15
22
  }
16
23
 
17
24
  message ServicesResponse {
@@ -50,7 +50,7 @@ message Shop {
50
50
  optional string shop_number = 3;
51
51
  optional string name = 4;
52
52
  optional string description = 5;
53
- optional string domain = 6;
53
+ repeated string domains = 6;
54
54
  optional string organization_id = 7 [
55
55
  (io.restorecommerce.options.resolver) = {
56
56
  target_type: ".io.restorecommerce.organization.Organization",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restorecommerce/protos",
3
- "version": "6.8.8",
3
+ "version": "6.8.9",
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": "e6a97cde134c7a234ed41d8659dd9ca855a4b924"
18
+ "gitHead": "8f418a8b25c60c689c30baa02424856665eb5969"
19
19
  }