authhero 9.9.0 → 9.9.1
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/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +543 -344
- package/dist/authhero.d.ts +135 -135
- package/dist/authhero.mjs +12205 -11732
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/grant-tokens.d.ts +16 -0
- package/dist/types/helpers/refresh-token-lifetime.d.ts +103 -0
- package/dist/types/hooks/addDataHooks.d.ts +4 -3
- package/dist/types/index.d.ts +135 -135
- package/dist/types/routes/auth-api/index.d.ts +32 -32
- package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +24 -24
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +80 -80
- package/dist/types/routes/management-api/keys.d.ts +8 -8
- package/dist/types/routes/management-api/organizations.d.ts +5 -5
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +20 -20
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/info-code-exchange.d.ts +27 -0
- package/dist/types/routes/universal-login/token-info-page.d.ts +26 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/utils/email.d.ts +21 -9
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/markusahlstrand/authhero"
|
|
13
13
|
},
|
|
14
|
-
"version": "9.9.
|
|
14
|
+
"version": "9.9.1",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
@@ -33,8 +33,7 @@
|
|
|
33
33
|
"@ape-egg/tailwind-rows-columns": "^1.0.2",
|
|
34
34
|
"@hono/node-server": "^1.19.14",
|
|
35
35
|
"@hono/zod-openapi": "^1.4.0",
|
|
36
|
-
"@react-email/
|
|
37
|
-
"@react-email/render": "^2.0.6",
|
|
36
|
+
"@react-email/render": "^2.1.0",
|
|
38
37
|
"@storybook/react": "^10.4.1",
|
|
39
38
|
"@storybook/react-vite": "^10.4.1",
|
|
40
39
|
"@types/node": "^24.12.4",
|
|
@@ -53,6 +52,7 @@
|
|
|
53
52
|
"postcss": "8.5.15",
|
|
54
53
|
"react": "^19.2.6",
|
|
55
54
|
"react-dom": "^19.2.6",
|
|
55
|
+
"react-email": "^6.9.3",
|
|
56
56
|
"rollup": "^4.54.0",
|
|
57
57
|
"rollup-plugin-dts": "^6.4.1",
|
|
58
58
|
"rollup-plugin-visualizer": "^6.0.5",
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
"vite": "^8.0.14",
|
|
64
64
|
"vite-plugin-dts": "^4.5.4",
|
|
65
65
|
"vitest": "^4.1.7",
|
|
66
|
-
"@authhero/kysely-adapter": "12.6.
|
|
67
|
-
"@authhero/widget": "0.38.
|
|
66
|
+
"@authhero/kysely-adapter": "12.6.1",
|
|
67
|
+
"@authhero/widget": "0.38.6"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@peculiar/x509": "^1.14.0",
|
|
@@ -80,9 +80,9 @@
|
|
|
80
80
|
"qrcode": "^1.5.4",
|
|
81
81
|
"sanitize-html": "^2.17.4",
|
|
82
82
|
"xstate": "^5.31.1",
|
|
83
|
-
"@authhero/adapter-interfaces": "4.
|
|
84
|
-
"@authhero/proxy": "0.10.
|
|
85
|
-
"@authhero/saml": "0.5.
|
|
83
|
+
"@authhero/adapter-interfaces": "4.11.0",
|
|
84
|
+
"@authhero/proxy": "0.10.10",
|
|
85
|
+
"@authhero/saml": "0.5.9"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
88
|
"@authhero/widget": "^0.1.0",
|