-
Notifications
You must be signed in to change notification settings - Fork 5
PROD - Auth0 security and token updates #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4f7f2a1
58bcde1
0cff18a
ff36fb7
472d4b8
b4eb44c
4d74b1a
05ad0ae
5c88b9e
5d72d9a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
|
|
||
| /* !!! This is code generated by Prisma. Do not edit directly. !!! | ||
| /* eslint-disable */ | ||
| // biome-ignore-all lint: generated file | ||
| module.exports = { ...require('.') } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
|
|
||
| /* !!! This is code generated by Prisma. Do not edit directly. !!! | ||
| /* eslint-disable */ | ||
| module.exports = { ...require('.') } | ||
| // biome-ignore-all lint: generated file | ||
| module.exports = { ...require('#main-entry-point') } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
|
|
||
| /* !!! This is code generated by Prisma. Do not edit directly. !!! | ||
| /* eslint-disable */ | ||
| // biome-ignore-all lint: generated file | ||
|
|
||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||
|
|
||
|
|
@@ -35,12 +36,12 @@ exports.Prisma = Prisma | |
| exports.$Enums = {} | ||
|
|
||
| /** | ||
| * Prisma Client JS version: 6.7.0 | ||
| * Query Engine version: 3cff47a7f5d65c3ea74883f1d736e41d68ce91ed | ||
| * Prisma Client JS version: 6.19.1 | ||
| * Query Engine version: c2990dca591cba766e3b7ef5d9e8a84796e47ab7 | ||
| */ | ||
| Prisma.prismaVersion = { | ||
| client: "6.7.0", | ||
| engine: "3cff47a7f5d65c3ea74883f1d736e41d68ce91ed" | ||
| client: "6.19.1", | ||
| engine: "c2990dca591cba766e3b7ef5d9e8a84796e47ab7" | ||
| } | ||
|
|
||
| Prisma.PrismaClientKnownRequestError = PrismaClientKnownRequestError; | ||
|
|
@@ -186,7 +187,7 @@ const config = { | |
| "binaryTargets": [ | ||
| { | ||
| "fromEnvVar": null, | ||
| "value": "debian-openssl-1.1.x", | ||
| "value": "debian-openssl-3.0.x", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [❗❗ |
||
| "native": true | ||
| } | ||
| ], | ||
|
|
@@ -198,8 +199,8 @@ const config = { | |
| "rootEnvPath": null | ||
| }, | ||
| "relativePath": "../..", | ||
| "clientVersion": "6.7.0", | ||
| "engineVersion": "3cff47a7f5d65c3ea74883f1d736e41d68ce91ed", | ||
| "clientVersion": "6.19.1", | ||
| "engineVersion": "c2990dca591cba766e3b7ef5d9e8a84796e47ab7", | ||
| "datasourceNames": [ | ||
| "memberdb" | ||
| ], | ||
|
|
@@ -253,8 +254,8 @@ exports.PrismaClient = PrismaClient | |
| Object.assign(exports, Prisma) | ||
|
|
||
| // file annotations for bundling tools to include these files | ||
| path.join(__dirname, "libquery_engine-debian-openssl-1.1.x.so.node"); | ||
| path.join(process.cwd(), "prisma/member/generated/member/libquery_engine-debian-openssl-1.1.x.so.node") | ||
| path.join(__dirname, "libquery_engine-debian-openssl-3.0.x.so.node"); | ||
| path.join(process.cwd(), "prisma/member/generated/member/libquery_engine-debian-openssl-3.0.x.so.node") | ||
| // file annotations for bundling tools to include these files | ||
| path.join(__dirname, "schema.prisma"); | ||
| path.join(process.cwd(), "prisma/member/generated/member/schema.prisma") | ||
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[❗❗
correctness]The change from
require('.')torequire('#main-entry-point')could potentially break functionality if#main-entry-pointdoes not resolve correctly in all environments. Ensure that#main-entry-pointis correctly configured and accessible in the environments where this code will run.