authhero 0.2.1 → 0.2.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.
- package/CHANGELOG.md +8 -0
- package/dist/authhero.cjs +1 -1
- package/dist/authhero.iife.js +1 -1
- package/dist/authhero.mjs +5918 -2174
- package/package.json +3 -2
- package/src/hooks/index.ts +29 -0
- package/src/hooks/link-users.ts +31 -0
- package/src/hooks/webhooks.ts +77 -0
- package/src/index.ts +9 -2
- package/src/management-app.ts +55 -0
- package/src/middlewares/register-component.ts +36 -0
- package/src/routes/management-api/tenants.ts +224 -0
- package/src/routes/oauth2/well-known.ts +2 -3
- package/src/types/Bindings.ts +5 -0
- package/src/types/Query.ts +42 -0
- package/src/types/Variables.ts +3 -1
- package/src/types/index.ts +2 -2
- package/src/utils/parse-sort.ts +18 -0
- package/src/utils/users.ts +130 -0
- package/src/bun.ts +0 -16
- package/src/types/JWKS.ts +0 -37
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# authhero
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Centralized all codes to the codes table and added a new logins table for the login sessions. The old tables will be removed in the next update
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @authhero/adapter-interfaces@0.9.1
|
|
10
|
+
|
|
3
11
|
## 0.2.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|