@restorecommerce/protos 6.13.0 → 6.14.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 +23 -0
- package/io/restorecommerce/user.proto +4 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,29 @@
|
|
|
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.14.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.13.1...@restorecommerce/protos@6.14.0) (2026-05-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* extend user proto with invitedAt ([#186](https://github.com/restorecommerce/libs/issues/186)) ([c3bba3b](https://github.com/restorecommerce/libs/commit/c3bba3be0a1014c9df20fda6e05128a5e0a7383c))
|
|
12
|
+
* trigger new build ([#189](https://github.com/restorecommerce/libs/issues/189)) ([8a95f92](https://github.com/restorecommerce/libs/commit/8a95f92f33ad41b4cec085351c54e1209d4f7b1f))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [6.13.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.13.0...@restorecommerce/protos@6.13.1) (2026-04-07)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* 418 optional expire date, token infinite by default ([#183](https://github.com/restorecommerce/libs/issues/183)) ([bb478a0](https://github.com/restorecommerce/libs/commit/bb478a0a1edfab129244b6c90c4d5ccfd0835b64))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
# [6.13.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.12.0...@restorecommerce/protos@6.13.0) (2026-03-31)
|
|
7
30
|
|
|
8
31
|
|
|
@@ -75,6 +75,7 @@ message LoginRequest {
|
|
|
75
75
|
message ImpersonateRequest {
|
|
76
76
|
optional string identifier = 1; // Username to impersonate
|
|
77
77
|
optional io.restorecommerce.auth.Subject subject = 2; // Impersonator's subject
|
|
78
|
+
optional uint32 token_ttl = 3; // Token time to live in seconds
|
|
78
79
|
}
|
|
79
80
|
|
|
80
81
|
message AccessTokenData {
|
|
@@ -275,6 +276,7 @@ message SendActivationEmailRequest {
|
|
|
275
276
|
*/
|
|
276
277
|
message Deleted {
|
|
277
278
|
optional string id = 1;
|
|
279
|
+
optional string default_scope = 2; // default hierarchical scope
|
|
278
280
|
}
|
|
279
281
|
|
|
280
282
|
/**
|
|
@@ -409,6 +411,7 @@ message User {
|
|
|
409
411
|
repeated string totp_session_tokens = 29; /// TOTP Login session tokens
|
|
410
412
|
repeated string password_hash_history = 30; // List of historical password hashes
|
|
411
413
|
repeated string totp_recovery_codes = 31; // List of TOTP recovery codes
|
|
414
|
+
optional google.protobuf.Timestamp invited_at = 32;
|
|
412
415
|
}
|
|
413
416
|
|
|
414
417
|
/**
|
|
@@ -458,4 +461,5 @@ message UserRole {
|
|
|
458
461
|
repeated io.restorecommerce.attribute.Attribute properties = 25; // additional properties
|
|
459
462
|
optional google.protobuf.Any data = 26; // additional data
|
|
460
463
|
repeated io.restorecommerce.role.Role roles = 27;
|
|
464
|
+
optional google.protobuf.Timestamp invited_at = 28;
|
|
461
465
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.14.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": "8111c97d9347a50602012a0b4d7be2a629054c17"
|
|
19
19
|
}
|