better-auth 0.3.2 → 0.3.3-beta.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/api.js CHANGED
@@ -1388,7 +1388,6 @@ var callbackOAuth = createAuthEndpoint(
1388
1388
  ...user,
1389
1389
  id
1390
1390
  });
1391
- console.log({ user, data });
1392
1391
  const parsedState = parseState(c.query.state);
1393
1392
  if (!parsedState.success) {
1394
1393
  c.context.logger.error("Unable to parse state");
package/dist/index.js CHANGED
@@ -1478,7 +1478,6 @@ var callbackOAuth = createAuthEndpoint(
1478
1478
  ...user,
1479
1479
  id
1480
1480
  });
1481
- console.log({ user, data });
1482
1481
  const parsedState = parseState(c.query.state);
1483
1482
  if (!parsedState.success) {
1484
1483
  c.context.logger.error("Unable to parse state");
package/dist/plugins.js CHANGED
@@ -1272,7 +1272,6 @@ var callbackOAuth = createAuthEndpoint(
1272
1272
  ...user,
1273
1273
  id
1274
1274
  });
1275
- console.log({ user, data });
1276
1275
  const parsedState = parseState(c.query.state);
1277
1276
  if (!parsedState.success) {
1278
1277
  c.context.logger.error("Unable to parse state");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "better-auth",
3
- "version": "0.3.2",
3
+ "version": "0.3.3-beta.1",
4
4
  "description": "The most comprehensive authentication library for TypeScript.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",