@ley0x/better-auth-lastfm 1.1.5 → 1.1.6

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/index.cjs CHANGED
@@ -141,7 +141,9 @@ function lastfmPlugin(options) {
141
141
  accountId: username,
142
142
  providerId: "lastfm",
143
143
  userId: user.id,
144
- accessToken: sessionKey
144
+ accessToken: sessionKey,
145
+ createdAt: /* @__PURE__ */ new Date(),
146
+ updatedAt: /* @__PURE__ */ new Date()
145
147
  }
146
148
  });
147
149
  }
package/dist/index.js CHANGED
@@ -114,7 +114,9 @@ function lastfmPlugin(options) {
114
114
  accountId: username,
115
115
  providerId: "lastfm",
116
116
  userId: user.id,
117
- accessToken: sessionKey
117
+ accessToken: sessionKey,
118
+ createdAt: /* @__PURE__ */ new Date(),
119
+ updatedAt: /* @__PURE__ */ new Date()
118
120
  }
119
121
  });
120
122
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ley0x/better-auth-lastfm",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "type": "module",
5
5
  "description": "Last.fm authentication plugin for BetterAuth",
6
6
  "main": "dist/index.cjs",