@restorecommerce/protos 6.13.1 → 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 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.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
+
6
18
  ## [6.13.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.13.0...@restorecommerce/protos@6.13.1) (2026-04-07)
7
19
 
8
20
 
@@ -276,6 +276,7 @@ message SendActivationEmailRequest {
276
276
  */
277
277
  message Deleted {
278
278
  optional string id = 1;
279
+ optional string default_scope = 2; // default hierarchical scope
279
280
  }
280
281
 
281
282
  /**
@@ -410,6 +411,7 @@ message User {
410
411
  repeated string totp_session_tokens = 29; /// TOTP Login session tokens
411
412
  repeated string password_hash_history = 30; // List of historical password hashes
412
413
  repeated string totp_recovery_codes = 31; // List of TOTP recovery codes
414
+ optional google.protobuf.Timestamp invited_at = 32;
413
415
  }
414
416
 
415
417
  /**
@@ -459,4 +461,5 @@ message UserRole {
459
461
  repeated io.restorecommerce.attribute.Attribute properties = 25; // additional properties
460
462
  optional google.protobuf.Any data = 26; // additional data
461
463
  repeated io.restorecommerce.role.Role roles = 27;
464
+ optional google.protobuf.Timestamp invited_at = 28;
462
465
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restorecommerce/protos",
3
- "version": "6.13.1",
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": "59397c40c75a8b269766189b39bb8c5eb38191dd"
18
+ "gitHead": "8111c97d9347a50602012a0b4d7be2a629054c17"
19
19
  }