vintasend-prisma 0.1.1 → 0.1.2

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.1",
3
+ "version": "0.1.2",
4
4
  "description": "VintaSend Backend implementation for Prisma",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -148,7 +148,7 @@ export class PrismaNotificationBackend<
148
148
  AvailableContexts extends Record<string, ContextGenerator>,
149
149
  NotificationIdType extends Identifier = Identifier,
150
150
  UserIdType extends Identifier = Identifier,
151
- > implements BaseNotificationBackend<AvailableContexts>
151
+ > implements BaseNotificationBackend<AvailableContexts, NotificationIdType, UserIdType>
152
152
  {
153
153
  constructor(private prismaClient: Client) {}
154
154