@travetto/auth-web-session 7.0.0-rc.1 → 7.0.0-rc.2

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -49,7 +49,7 @@ export class AuthSessionInterceptor implements WebInterceptor {
49
49
  }
50
50
  ```
51
51
 
52
- Once operating within the [Session](https://github.com/travetto/travetto/tree/main/module/auth-session/src/session.ts#L6) boundaries, the session state can be injected via [@ContextParam](https://github.com/travetto/travetto/tree/main/module/web/src/decorator/param.ts#L66)s, injected as [SessionContext](https://github.com/travetto/travetto/tree/main/module/auth-session/src/context.ts#L11), or accessed via the [SessionService](https://github.com/travetto/travetto/tree/main/module/auth-session/src/service.ts#L14).
52
+ Once operating within the [Session](https://github.com/travetto/travetto/tree/main/module/auth-session/src/session.ts#L6) boundaries, the session state can be injected via [@ContextParam](https://github.com/travetto/travetto/tree/main/module/web/src/decorator/param.ts#L64)s, injected as [SessionContext](https://github.com/travetto/travetto/tree/main/module/auth-session/src/context.ts#L11), or accessed via the [SessionService](https://github.com/travetto/travetto/tree/main/module/auth-session/src/service.ts#L14).
53
53
 
54
54
  **Code: Sample Usage**
55
55
  ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/auth-web-session",
3
- "version": "7.0.0-rc.1",
3
+ "version": "7.0.0-rc.2",
4
4
  "description": "Web authentication session integration support for the Travetto framework",
5
5
  "keywords": [
6
6
  "authentication",
@@ -25,11 +25,11 @@
25
25
  "directory": "module/auth-web-session"
26
26
  },
27
27
  "dependencies": {
28
- "@travetto/auth": "^7.0.0-rc.0",
29
- "@travetto/auth-session": "^7.0.0-rc.0",
30
- "@travetto/auth-web": "^7.0.0-rc.1",
31
- "@travetto/di": "^7.0.0-rc.0",
32
- "@travetto/web": "^7.0.0-rc.1"
28
+ "@travetto/auth": "^7.0.0-rc.1",
29
+ "@travetto/auth-session": "^7.0.0-rc.1",
30
+ "@travetto/auth-web": "^7.0.0-rc.2",
31
+ "@travetto/di": "^7.0.0-rc.1",
32
+ "@travetto/web": "^7.0.0-rc.2"
33
33
  },
34
34
  "travetto": {
35
35
  "displayName": "Web Auth Session"