@restorecommerce/protos 6.15.0 → 6.16.0
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,35 @@
|
|
|
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.16.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.15.1...@restorecommerce/protos@6.16.0) (2026-06-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* rename token last_login to last_use and add created_at timestamp ([2f86971](https://github.com/restorecommerce/libs/commit/2f869715a36b669cff31d0bd19a3e498579e1694))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [6.15.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.15.0...@restorecommerce/protos@6.15.1) (2026-05-27)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **facade:** add options as fake field for EndImpersonation, compily with grpc specs for no emtpy ob ([edb6e57](https://github.com/restorecommerce/libs/commit/edb6e5743caa505443d7866e09b50652c493599b))
|
|
23
|
+
* **facade:** can't build schema with empty messages ([db884a2](https://github.com/restorecommerce/libs/commit/db884a26812736685abc20e93582dfcd0245ef44))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Reverts
|
|
27
|
+
|
|
28
|
+
* Revert "chore(release): publish" ([a5b5a46](https://github.com/restorecommerce/libs/commit/a5b5a46b191c4b885a97f427210000d9d6608fc3))
|
|
29
|
+
* Revert "chore(release): publish" ([3742433](https://github.com/restorecommerce/libs/commit/37424334499eab0b3eeef9954eea402a70ec8bef))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
6
35
|
# [6.15.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.14.0...@restorecommerce/protos@6.15.0) (2026-05-12)
|
|
7
36
|
|
|
8
37
|
|
|
@@ -21,9 +21,10 @@ message Tokens {
|
|
|
21
21
|
repeated string scopes = 4; // identifier for role_association
|
|
22
22
|
optional string type = 5; // type of token eg: access_token, refresh_token
|
|
23
23
|
optional bool interactive = 6;
|
|
24
|
-
optional google.protobuf.Timestamp
|
|
24
|
+
optional google.protobuf.Timestamp last_use = 7;
|
|
25
25
|
optional string client_id = 8;
|
|
26
26
|
optional string impersonated_by = 9; // ID of the impersonator
|
|
27
|
+
optional google.protobuf.Timestamp created_at = 10;
|
|
27
28
|
}
|
|
28
29
|
|
|
29
30
|
message HierarchicalScope {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.16.0",
|
|
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": "
|
|
18
|
+
"gitHead": "809315322ac57d199aa9f2e460b44195a781fe89"
|
|
19
19
|
}
|