vintasend-prisma 0.1.4 → 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.4",
3
+ "version": "0.1.5",
4
4
  "description": "VintaSend Backend implementation for Prisma",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -431,8 +431,7 @@ export class PrismaNotificationBackend<
431
431
  notificationId: NonNullable<
432
432
  Awaited<ReturnType<typeof this.prismaClient.notification.findUnique>>
433
433
  >['id'],
434
- // biome-ignore lint/correctness/noUnusedVariables: <explanation>
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: {