@pothos/plugin-prisma 4.0.0 → 4.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [777f6de]
8
+ - @pothos/core@4.0.2
9
+
10
+ ## 4.0.2
11
+
12
+ ### Patch Changes
13
+
14
+ - 9bd203e: Fix graphql peer dependency version to match documented minumum version
15
+ - Updated dependencies [9bd203e]
16
+ - @pothos/core@4.0.1
17
+
18
+ ## 4.0.1
19
+
20
+ ### Patch Changes
21
+
22
+ - 132a2a5: Fix empty generated.ts file
23
+
3
24
  ## 4.0.0
4
25
 
5
26
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pothos/plugin-prisma",
3
- "version": "4.0.0",
3
+ "version": "4.0.3",
4
4
  "description": "A Pothos plugin for more efficient integration with prisma",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./dts/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "./generated": {
19
19
  "import": {
20
- "types": "./esm/generated.ts",
20
+ "types": "./esm/generated.d.ts",
21
21
  "default": "./esm/generated.js"
22
22
  },
23
23
  "require": {
@@ -60,9 +60,9 @@
60
60
  "seed": "node prisma/seed.mjs"
61
61
  },
62
62
  "peerDependencies": {
63
- "@pothos/core": "4.0.0",
63
+ "@pothos/core": "4.0.2",
64
64
  "@prisma/client": "*",
65
- "graphql": "^16.8.1",
65
+ "graphql": ">=16.6.0",
66
66
  "typescript": ">=4.7.2"
67
67
  },
68
68
  "devDependencies": {
@@ -71,12 +71,12 @@
71
71
  "graphql-scalars": "^1.23.0",
72
72
  "graphql-tag": "^2.12.6",
73
73
  "prisma": "^5.16.2",
74
- "@pothos/core": "4.0.0",
75
- "@pothos/plugin-complexity": "4.0.0",
76
- "@pothos/plugin-errors": "4.0.0",
77
- "@pothos/plugin-relay": "4.0.0",
78
- "@pothos/plugin-simple-objects": "4.0.0",
79
- "@pothos/test-utils": "2.0.0"
74
+ "@pothos/core": "4.0.2",
75
+ "@pothos/plugin-complexity": "4.0.2",
76
+ "@pothos/plugin-errors": "4.0.2",
77
+ "@pothos/plugin-relay": "4.0.2",
78
+ "@pothos/plugin-simple-objects": "4.0.3",
79
+ "@pothos/test-utils": "2.0.1"
80
80
  },
81
81
  "scripts": {
82
82
  "generate": "prisma generate",
File without changes