@meistrari/auth-nuxt 3.29.2 → 3.30.0

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.29.2",
4
+ "version": "3.30.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -24,12 +24,14 @@ export function useTelaSession() {
24
24
  async function signInWithSocialProvider({
25
25
  provider,
26
26
  callbackURL,
27
- errorCallbackURL
27
+ errorCallbackURL,
28
+ loginHint
28
29
  }) {
29
30
  await authClient.session.signInWithSocialProvider({
30
31
  provider,
31
32
  callbackURL,
32
- errorCallbackURL
33
+ errorCallbackURL,
34
+ loginHint
33
35
  });
34
36
  }
35
37
  async function signInWithSaml({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/auth-nuxt",
3
- "version": "3.29.2",
3
+ "version": "3.30.0",
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.39.2",
39
+ "@meistrari/auth-core": "1.40.0",
40
40
  "jose": "6.1.3"
41
41
  },
42
42
  "peerDependencies": {