@restorecommerce/protos 6.15.1 → 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,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.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
+
6
17
  ## [6.15.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.15.0...@restorecommerce/protos@6.15.1) (2026-05-27)
7
18
 
8
19
 
@@ -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 last_login = 7;
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.15.1",
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": "c20a9b38e8c105922874af5a3e0ef4c71ea78bf5"
18
+ "gitHead": "809315322ac57d199aa9f2e460b44195a781fe89"
19
19
  }