@meistrari/auth-core 1.4.2 → 1.4.4

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/README.md CHANGED
@@ -86,7 +86,7 @@ Initiates social authentication flow with Google or Microsoft.
86
86
  await authClient.session.signInWithSocialProvider({
87
87
  provider: 'google', // or 'microsoft'
88
88
  callbackURL: 'https://app.example.com/callback',
89
- errorCallbackURL: 'https://app.example.com/error' // optional
89
+ errorCallbackURL: 'https://app.example.com/error', // optional
90
90
  })
91
91
  ```
92
92
 
@@ -100,7 +100,7 @@ Initiates SAML-based Single Sign-On authentication flow.
100
100
  await authClient.session.signInWithSaml({
101
101
  email: 'user@company.com',
102
102
  callbackURL: 'https://app.example.com/callback',
103
- errorCallbackURL: 'https://app.example.com/error' // optional
103
+ errorCallbackURL: 'https://app.example.com/error', // optional
104
104
  })
105
105
  ```
106
106
 
package/dist/index.mjs CHANGED
@@ -46,7 +46,7 @@ const organizationAdditionalFields = {
46
46
  }
47
47
  };
48
48
 
49
- const version = "1.4.2";
49
+ const version = "1.4.4";
50
50
  function customEndpointsPluginClient() {
51
51
  return {
52
52
  id: "custom-endpoints",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/auth-core",
3
- "version": "1.4.2",
3
+ "version": "1.4.4",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {