diff --git a/__fixtures__/test-project/api/package.json b/__fixtures__/test-project/api/package.json index c3bcee098057..3184b65cbe96 100644 --- a/__fixtures__/test-project/api/package.json +++ b/__fixtures__/test-project/api/package.json @@ -4,7 +4,7 @@ "private": true, "dependencies": { "@redwoodjs/api": "6.0.7", - "@redwoodjs/auth-dbauth-api": "7.0.0-canary.787", + "@redwoodjs/auth-dbauth-api": "7.0.0-canary.789", "@redwoodjs/graphql-server": "6.0.7" } } diff --git a/__fixtures__/test-project/api/src/functions/auth.ts b/__fixtures__/test-project/api/src/functions/auth.ts index 8de66a2f546a..d71b437e9802 100644 --- a/__fixtures__/test-project/api/src/functions/auth.ts +++ b/__fixtures__/test-project/api/src/functions/auth.ts @@ -174,7 +174,7 @@ export const handler = async ( // client when invoking a handler that returns a user (like forgotPassword // and signup). This list should be as small as possible to be sure not to // leak any sensitive information to the client. - allowedUserFields = ['id', 'email'], + allowedUserFields: ['id', 'email'], // Specifies attributes on the cookie that dbAuth sets in order to remember // who is logged in. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies#restrict_access_to_cookies diff --git a/__fixtures__/test-project/web/package.json b/__fixtures__/test-project/web/package.json index e5699fdc334c..24f597a88129 100644 --- a/__fixtures__/test-project/web/package.json +++ b/__fixtures__/test-project/web/package.json @@ -11,7 +11,7 @@ ] }, "dependencies": { - "@redwoodjs/auth-dbauth-web": "7.0.0-canary.787", + "@redwoodjs/auth-dbauth-web": "7.0.0-canary.789", "@redwoodjs/forms": "6.0.7", "@redwoodjs/router": "6.0.7", "@redwoodjs/web": "6.0.7",