@danielcok17/prisma-db 1.0.5 → 1.1.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/package.json +3 -3
- package/prisma/app.prisma +35 -2
- package/prisma/generated/app/default.js +1 -1
- package/prisma/generated/app/edge.js +33 -10
- package/prisma/generated/app/index-browser.js +24 -5
- package/prisma/generated/app/index.d.ts +4795 -1404
- package/prisma/generated/app/index.js +37 -10
- package/prisma/generated/app/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/prisma/generated/app/libquery_engine-linux-musl-openssl-3.0.x.so.node +0 -0
- package/prisma/generated/app/package.json +37 -4
- package/prisma/generated/app/query_engine_bg.js +2 -0
- package/prisma/generated/app/query_engine_bg.wasm +0 -0
- package/prisma/generated/app/runtime/edge-esm.js +16 -16
- package/prisma/generated/app/runtime/edge.js +16 -16
- package/prisma/generated/app/runtime/library.d.ts +1 -0
- package/prisma/generated/app/runtime/library.js +45 -45
- package/prisma/generated/app/runtime/react-native.js +28 -28
- package/prisma/generated/app/runtime/wasm-compiler-edge.js +27 -26
- package/prisma/generated/app/runtime/wasm-engine-edge.js +18 -17
- package/prisma/generated/app/schema.prisma +63 -30
- package/prisma/generated/app/wasm-edge-light-loader.mjs +4 -0
- package/prisma/generated/app/wasm-worker-loader.mjs +4 -0
- package/prisma/generated/app/wasm.d.ts +1 -1
- package/prisma/generated/app/wasm.js +143 -99
- package/prisma/generated/law/default.js +1 -1
- package/prisma/generated/law/edge.js +12 -8
- package/prisma/generated/law/index-browser.js +4 -4
- package/prisma/generated/law/index.d.ts +6 -2
- package/prisma/generated/law/index.js +16 -8
- package/prisma/generated/law/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/prisma/generated/law/libquery_engine-linux-musl-openssl-3.0.x.so.node +0 -0
- package/prisma/generated/law/package.json +37 -4
- package/prisma/generated/law/query_engine_bg.js +2 -0
- package/prisma/generated/law/query_engine_bg.wasm +0 -0
- package/prisma/generated/law/runtime/edge-esm.js +16 -16
- package/prisma/generated/law/runtime/edge.js +16 -16
- package/prisma/generated/law/runtime/library.d.ts +1 -0
- package/prisma/generated/law/runtime/library.js +45 -45
- package/prisma/generated/law/runtime/react-native.js +28 -28
- package/prisma/generated/law/runtime/wasm-compiler-edge.js +27 -26
- package/prisma/generated/law/runtime/wasm-engine-edge.js +18 -17
- package/prisma/generated/law/schema.prisma +3 -2
- package/prisma/generated/law/wasm-edge-light-loader.mjs +4 -0
- package/prisma/generated/law/wasm-worker-loader.mjs +4 -0
- package/prisma/generated/law/wasm.d.ts +1 -1
- package/prisma/generated/law/wasm.js +110 -85
- package/prisma/law.prisma +3 -2
- package/prisma/migrations/20251009213916_add_email_authentication/migration.sql +54 -0
|
@@ -20,12 +20,12 @@ exports.Prisma = Prisma
|
|
|
20
20
|
exports.$Enums = {}
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
|
-
* Prisma Client JS version: 6.
|
|
24
|
-
* Query Engine version:
|
|
23
|
+
* Prisma Client JS version: 6.17.0
|
|
24
|
+
* Query Engine version: c0aafc03b8ef6cdced8654b9a817999e02457d6a
|
|
25
25
|
*/
|
|
26
26
|
Prisma.prismaVersion = {
|
|
27
|
-
client: "6.
|
|
28
|
-
engine: "
|
|
27
|
+
client: "6.17.0",
|
|
28
|
+
engine: "c0aafc03b8ef6cdced8654b9a817999e02457d6a"
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
Prisma.PrismaClientKnownRequestError = () => {
|
|
@@ -141,6 +141,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
141
141
|
email: 'email',
|
|
142
142
|
emailVerified: 'emailVerified',
|
|
143
143
|
image: 'image',
|
|
144
|
+
password: 'password',
|
|
144
145
|
createdAt: 'createdAt',
|
|
145
146
|
messageCount: 'messageCount',
|
|
146
147
|
agreedToTerms: 'agreedToTerms',
|
|
@@ -311,6 +312,22 @@ exports.Prisma.WorkflowStepScalarFieldEnum = {
|
|
|
311
312
|
metadata: 'metadata'
|
|
312
313
|
};
|
|
313
314
|
|
|
315
|
+
exports.Prisma.VerificationTokenScalarFieldEnum = {
|
|
316
|
+
id: 'id',
|
|
317
|
+
userId: 'userId',
|
|
318
|
+
token: 'token',
|
|
319
|
+
expires: 'expires',
|
|
320
|
+
createdAt: 'createdAt'
|
|
321
|
+
};
|
|
322
|
+
|
|
323
|
+
exports.Prisma.PasswordResetTokenScalarFieldEnum = {
|
|
324
|
+
id: 'id',
|
|
325
|
+
userId: 'userId',
|
|
326
|
+
token: 'token',
|
|
327
|
+
expires: 'expires',
|
|
328
|
+
createdAt: 'createdAt'
|
|
329
|
+
};
|
|
330
|
+
|
|
314
331
|
exports.Prisma.SortOrder = {
|
|
315
332
|
asc: 'asc',
|
|
316
333
|
desc: 'desc'
|
|
@@ -398,7 +415,9 @@ exports.Prisma.ModelName = {
|
|
|
398
415
|
Session: 'Session',
|
|
399
416
|
AdminActionLog: 'AdminActionLog',
|
|
400
417
|
WorkflowLog: 'WorkflowLog',
|
|
401
|
-
WorkflowStep: 'WorkflowStep'
|
|
418
|
+
WorkflowStep: 'WorkflowStep',
|
|
419
|
+
VerificationToken: 'VerificationToken',
|
|
420
|
+
PasswordResetToken: 'PasswordResetToken'
|
|
402
421
|
};
|
|
403
422
|
|
|
404
423
|
/**
|