@dismissible/nestjs-postgres-storage 0.0.2-canary.5daf195.0 → 0.0.2-canary.6b97aa7.0
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": "@dismissible/nestjs-postgres-storage",
|
|
3
|
-
"version": "0.0.2-canary.
|
|
3
|
+
"version": "0.0.2-canary.6b97aa7.0",
|
|
4
4
|
"description": "PostgreSQL storage adapter for Dismissible using Prisma",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
@@ -27,24 +27,36 @@
|
|
|
27
27
|
"README.md"
|
|
28
28
|
],
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@nestjs/common": "^11.0.0"
|
|
30
|
+
"@nestjs/common": "^11.0.0",
|
|
31
|
+
"@dismissible/nestjs-storage": "^0.0.2-canary.6b97aa7.0",
|
|
32
|
+
"@dismissible/nestjs-dismissible-item": "^0.0.2-canary.6b97aa7.0",
|
|
33
|
+
"@dismissible/nestjs-logger": "^0.0.2-canary.6b97aa7.0",
|
|
34
|
+
"prisma": "^7.0.0"
|
|
31
35
|
},
|
|
32
36
|
"peerDependenciesMeta": {
|
|
33
37
|
"@nestjs/common": {
|
|
34
38
|
"optional": false
|
|
39
|
+
},
|
|
40
|
+
"@dismissible/nestjs-storage": {
|
|
41
|
+
"optional": false
|
|
42
|
+
},
|
|
43
|
+
"@dismissible/nestjs-dismissible-item": {
|
|
44
|
+
"optional": false
|
|
45
|
+
},
|
|
46
|
+
"@dismissible/nestjs-logger": {
|
|
47
|
+
"optional": false
|
|
48
|
+
},
|
|
49
|
+
"prisma": {
|
|
50
|
+
"optional": true
|
|
35
51
|
}
|
|
36
52
|
},
|
|
37
53
|
"dependencies": {
|
|
38
|
-
"@
|
|
39
|
-
"@
|
|
40
|
-
"
|
|
41
|
-
"prisma": "^7.2.0",
|
|
42
|
-
"@prisma/client": "^7.2.0",
|
|
43
|
-
"@prisma/adapter-pg": "^7.2.0",
|
|
44
|
-
"pg": "^8.16.3"
|
|
54
|
+
"@prisma/client": "^7.0.0",
|
|
55
|
+
"@prisma/adapter-pg": "^7.0.0",
|
|
56
|
+
"pg": "^8.13.0"
|
|
45
57
|
},
|
|
46
58
|
"devDependencies": {
|
|
47
|
-
"@types/pg": "^8.
|
|
59
|
+
"@types/pg": "^8.11.10"
|
|
48
60
|
},
|
|
49
61
|
"keywords": [
|
|
50
62
|
"nestjs",
|
|
@@ -17,8 +17,8 @@ import type * as Prisma from "./prismaNamespace"
|
|
|
17
17
|
|
|
18
18
|
const config: runtime.GetPrismaClientConfig = {
|
|
19
19
|
"previewFeatures": [],
|
|
20
|
-
"clientVersion": "7.
|
|
21
|
-
"engineVersion": "
|
|
20
|
+
"clientVersion": "7.1.0",
|
|
21
|
+
"engineVersion": "ab635e6b9d606fa5c8fb8b1a7f909c3c3c1c98ba",
|
|
22
22
|
"activeProvider": "postgresql",
|
|
23
23
|
"inlineSchema": "// Prisma schema for Dismissible PostgreSQL storage\n// https://pris.ly/d/prisma-schema\n\ngenerator client {\n provider = \"prisma-client\"\n output = \"./generated/prisma\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n}\n\nmodel DismissibleItem {\n id String\n userId String @map(\"user_id\")\n createdAt DateTime @default(now()) @map(\"created_at\")\n dismissedAt DateTime? @map(\"dismissed_at\")\n\n @@id([userId, id])\n @@index([userId])\n @@map(\"dismissible_items\")\n}\n",
|
|
24
24
|
"runtimeDataModel": {
|
|
@@ -80,12 +80,12 @@ export type PrismaVersion = {
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
/**
|
|
83
|
-
* Prisma Client JS version: 7.
|
|
84
|
-
* Query Engine version:
|
|
83
|
+
* Prisma Client JS version: 7.1.0
|
|
84
|
+
* Query Engine version: ab635e6b9d606fa5c8fb8b1a7f909c3c3c1c98ba
|
|
85
85
|
*/
|
|
86
86
|
export const prismaVersion: PrismaVersion = {
|
|
87
|
-
client: "7.
|
|
88
|
-
engine: "
|
|
87
|
+
client: "7.1.0",
|
|
88
|
+
engine: "ab635e6b9d606fa5c8fb8b1a7f909c3c3c1c98ba"
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
/**
|