@rapidrest/core 1.13.0 → 1.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.
@@ -10,9 +10,9 @@ export interface JWTUser {
10
10
  */
11
11
  uid: string;
12
12
  /**
13
- * Indicates if the user has elevated privileges.
13
+ * The timestamp that the user was granted elevated privileges. A negative value indicates the user is unprivileged. Default value is `-1`.
14
14
  */
15
- elevated?: boolean;
15
+ elevated?: number;
16
16
  /**
17
17
  * The list of roles (by name) that the user is a member of and will inherit the permissions of.
18
18
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rapidrest/core",
3
- "version": "1.13.0",
3
+ "version": "1.14.0",
4
4
  "description": "A collection of common utilities and core functionality for rapidly building RESTful applications.",
5
5
  "repository": "https://github.com/rapidrest/core.git",
6
6
  "author": "RapidREST <rapidrests@gmail.com>",