@restorecommerce/protos 6.4.0 → 6.4.1

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,18 @@
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.4.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.4.0...@restorecommerce/protos@6.4.1) (2023-11-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **facade:** fix to send client_id in token find response(this will be persisted to DB from token payload on identity-srv) ([0ebf12f](https://github.com/restorecommerce/libs/commit/0ebf12f4b7bb82e00ef878dc76c26576ad95ea76))
12
+ * **fulfillment.proto:** references should be list ([d9af066](https://github.com/restorecommerce/libs/commit/d9af0667024cc9356bfa3e786a2a4bf610c7c4db))
13
+
14
+
15
+
16
+
17
+
6
18
  # [6.4.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.3.0...@restorecommerce/protos@6.4.0) (2023-11-22)
7
19
 
8
20
 
@@ -22,6 +22,7 @@ message Tokens {
22
22
  optional string type = 5; // type of token eg: access_token, refresh_token
23
23
  optional bool interactive = 6;
24
24
  optional google.protobuf.Timestamp last_login = 7;
25
+ optional string client_id = 8;
25
26
  }
26
27
 
27
28
  message HierarchicalScope {
@@ -202,7 +202,7 @@ message Fulfillment {
202
202
  field_name: "shop",
203
203
  }
204
204
  ];
205
- optional io.restorecommerce.reference.Reference reference = 6;
205
+ repeated io.restorecommerce.reference.Reference references = 6;
206
206
  optional Packaging packaging = 7;
207
207
  repeated Label labels = 8; //set by service
208
208
  repeated Tracking trackings = 9; //set by service
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restorecommerce/protos",
3
- "version": "6.4.0",
3
+ "version": "6.4.1",
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": "bb96733796f69fafdb0daf6062e4f2f49caecacf"
18
+ "gitHead": "ea49dff37f69ae280b6b56879a356a2c3cd04d1b"
19
19
  }