@quatrain/auth 1.1.28 → 1.1.30

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 +4 -0
  2. package/package.json +8 -3
package/README.md CHANGED
@@ -23,6 +23,10 @@ npm install @quatrain/auth-firebase
23
23
 
24
24
  At startup, register an adapter with `Auth.addAdapter()`. In your middleware or API routes, use `Auth.getAdapter().verifyToken(token)` to validate incoming requests and extract the normalized user profile.
25
25
 
26
+ ## Documentation
27
+
28
+ For concrete examples and usage guides, please refer to the [How-To Guide](HOWTO.md).
29
+
26
30
  ## License
27
31
 
28
32
  AGPL-3.0-only
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quatrain/auth",
3
- "version": "1.1.28",
3
+ "version": "1.1.30",
4
4
  "license": "AGPL-3.0-only",
5
5
  "description": "Auth adapters commons",
6
6
  "main": "dist/index.js",
@@ -12,10 +12,15 @@
12
12
  "dist/",
13
13
  "README.md"
14
14
  ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/Quatrain/Core.git",
18
+ "directory": "packages/auth"
19
+ },
15
20
  "author": "Quatrain Développement SAS <developers@quatrain.com>",
16
21
  "dependencies": {
17
- "@quatrain/backend": "^1.1.34",
18
- "@quatrain/core": "^1.1.48"
22
+ "@quatrain/backend": "^1.1.35",
23
+ "@quatrain/core": "^1.1.50"
19
24
  },
20
25
  "devDependencies": {
21
26
  "@tsconfig/recommended": "^1.0.1",