@digilogiclabs/platform-core 1.6.0 → 1.7.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/index.mjs CHANGED
@@ -17965,7 +17965,11 @@ function buildKeycloakCallbacks(config) {
17965
17965
  * Compatible with Auth.js v5 JWT callback signature.
17966
17966
  */
17967
17967
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
17968
- async jwt({ token, user, account }) {
17968
+ async jwt({
17969
+ token,
17970
+ user,
17971
+ account
17972
+ }) {
17969
17973
  if (user) {
17970
17974
  token.id = token.sub ?? user.id;
17971
17975
  }