@pothos/plugin-prisma 3.40.0 → 3.40.1

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,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.40.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 5c6e0abb: Add placeholder generated file with instructions to run `prisma generate`
8
+
3
9
  ## 3.40.0
4
10
 
5
11
  ### Minor Changes
package/generated.ts CHANGED
@@ -1,67 +1,6 @@
1
- /* eslint-disable */
2
- import type { Prisma, User, Post, Comment } from "/Users/michaelhayes/code/prismaday-talk/node_modules/@prisma/client";
3
- export default interface PrismaTypes {
4
- User: {
5
- Name: "User";
6
- Shape: User;
7
- Include: Prisma.UserInclude;
8
- Select: Prisma.UserSelect;
9
- OrderBy: Prisma.UserOrderByWithRelationInput;
10
- WhereUnique: Prisma.UserWhereUniqueInput;
11
- Where: Prisma.UserWhereInput;
12
- RelationName: "posts" | "comments";
13
- ListRelations: "posts" | "comments";
14
- Relations: {
15
- posts: {
16
- Shape: Post[];
17
- Types: PrismaTypes["Post"];
18
- };
19
- comments: {
20
- Shape: Comment[];
21
- Types: PrismaTypes["Comment"];
22
- };
23
- };
24
- };
25
- Post: {
26
- Name: "Post";
27
- Shape: Post;
28
- Include: Prisma.PostInclude;
29
- Select: Prisma.PostSelect;
30
- OrderBy: Prisma.PostOrderByWithRelationInput;
31
- WhereUnique: Prisma.PostWhereUniqueInput;
32
- Where: Prisma.PostWhereInput;
33
- RelationName: "author" | "comments";
34
- ListRelations: "comments";
35
- Relations: {
36
- author: {
37
- Shape: User;
38
- Types: PrismaTypes["User"];
39
- };
40
- comments: {
41
- Shape: Comment[];
42
- Types: PrismaTypes["Comment"];
43
- };
44
- };
45
- };
46
- Comment: {
47
- Name: "Comment";
48
- Shape: Comment;
49
- Include: Prisma.CommentInclude;
50
- Select: Prisma.CommentSelect;
51
- OrderBy: Prisma.CommentOrderByWithRelationInput;
52
- WhereUnique: Prisma.CommentWhereUniqueInput;
53
- Where: Prisma.CommentWhereInput;
54
- RelationName: "author" | "post";
55
- ListRelations: never;
56
- Relations: {
57
- author: {
58
- Shape: User;
59
- Types: PrismaTypes["User"];
60
- };
61
- post: {
62
- Shape: Post;
63
- Types: PrismaTypes["Post"];
64
- };
65
- };
66
- };
67
- }
1
+ /*
2
+ This File should be overwritten by adding the pothos generator to you prisma schema
3
+ and running `prisma generate`. See https://pothos-graphql.dev/plugins/prisma for more details
4
+ */
5
+
6
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pothos/plugin-prisma",
3
- "version": "3.40.0",
3
+ "version": "3.40.1",
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",
@@ -64,12 +64,13 @@
64
64
  "devDependencies": {
65
65
  "@prisma/client": "^4.7.1",
66
66
  "graphql": "16.6.0",
67
+ "graphql-scalars": "^1.20.1",
67
68
  "graphql-tag": "^2.12.6",
68
69
  "prisma": "^4.7.1",
69
70
  "@pothos/core": "3.24.0",
70
71
  "@pothos/plugin-complexity": "3.11.7",
71
- "@pothos/plugin-errors": "3.9.0",
72
- "@pothos/plugin-relay": "3.32.0",
72
+ "@pothos/plugin-errors": "3.10.0",
73
+ "@pothos/plugin-relay": "3.33.0",
73
74
  "@pothos/plugin-simple-objects": "3.6.7",
74
75
  "@pothos/test-utils": "1.4.7"
75
76
  },