vintasend-prisma 0.1.3 → 0.1.5
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vintasend-prisma",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "VintaSend Backend implementation for Prisma",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -12,6 +12,6 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@prisma/client": "^6.3.1",
|
|
14
14
|
"prisma": "^6.3.1",
|
|
15
|
-
"vintasend": "^0.1.
|
|
15
|
+
"vintasend": "^0.1.4"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -431,8 +431,7 @@ export class PrismaNotificationBackend<
|
|
|
431
431
|
notificationId: NonNullable<
|
|
432
432
|
Awaited<ReturnType<typeof this.prismaClient.notification.findUnique>>
|
|
433
433
|
>['id'],
|
|
434
|
-
|
|
435
|
-
forUpdate: boolean,
|
|
434
|
+
_forUpdate: boolean,
|
|
436
435
|
): Promise<Notification<AvailableContexts, NotificationIdType, UserIdType> | null> {
|
|
437
436
|
const notification = await this.prismaClient.notification.findUnique({
|
|
438
437
|
where: {
|