@travetto/auth 5.0.0-rc.6 → 5.0.0-rc.7

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/README.md CHANGED
@@ -26,7 +26,7 @@ The module's goal is to be as flexible as possible. To that end, the primary co
26
26
 
27
27
  **Code: Principal Structure**
28
28
  ```typescript
29
- export interface Principal<D = { [key: string]: any }> {
29
+ export interface Principal<D = AnyMap> {
30
30
  /**
31
31
  * Primary identifier for a user
32
32
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/auth",
3
- "version": "5.0.0-rc.6",
3
+ "version": "5.0.0-rc.7",
4
4
  "description": "Authentication scaffolding for the Travetto framework",
5
5
  "keywords": [
6
6
  "authentication",
@@ -23,7 +23,7 @@
23
23
  "directory": "module/auth"
24
24
  },
25
25
  "dependencies": {
26
- "@travetto/runtime": "^5.0.0-rc.6"
26
+ "@travetto/runtime": "^5.0.0-rc.7"
27
27
  },
28
28
  "travetto": {
29
29
  "displayName": "Authentication"
@@ -2,7 +2,6 @@ import { AnyMap } from '@travetto/runtime';
2
2
 
3
3
  /**
4
4
  * A user principal, including permissions and details
5
- *
6
5
  * @concrete ../internal/types#PrincipalTarget
7
6
  * @augments `@travetto/rest:Context`
8
7
  */