@meistrari/auth-nuxt 3.9.0 → 3.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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@meistrari/auth-nuxt",
3
3
  "configKey": "telaAuth",
4
- "version": "3.9.0",
4
+ "version": "3.9.1",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -46,14 +46,12 @@ export function useTelaSession() {
46
46
  async function signInWithEmailAndPassword({
47
47
  email,
48
48
  password,
49
- callbackURL,
50
- errorCallbackURL
49
+ callbackURL
51
50
  }) {
52
51
  await authClient.session.signInWithEmailAndPassword({
53
52
  email,
54
53
  password,
55
- callbackURL,
56
- errorCallbackURL
54
+ callbackURL
57
55
  });
58
56
  }
59
57
  async function requestPasswordReset(email, callbackURL) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/auth-nuxt",
3
- "version": "3.9.0",
3
+ "version": "3.9.1",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -36,7 +36,7 @@
36
36
  "docs": "nuxt-module-build prepare && typedoc"
37
37
  },
38
38
  "dependencies": {
39
- "@meistrari/auth-core": "1.20.0",
39
+ "@meistrari/auth-core": "1.20.1",
40
40
  "jose": "6.1.3"
41
41
  },
42
42
  "peerDependencies": {