vintasend-prisma 0.1.1 → 0.1.3
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.3",
|
|
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.3"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -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
|
|