Skip to content

Commit

Permalink
update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
Noviny committed Aug 23, 2022
1 parent dc7dcfe commit 6f2439b
Showing 1 changed file with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,16 @@ export type KeystoneAdminUISortDirection =
| "ASC"
| "DESC";
type ResolvedTodoCreateInput = {
id?: import('.prisma/client').Prisma.TodoCreateInput["id"];
title?: import('.prisma/client').Prisma.TodoCreateInput["title"];
};
type ResolvedTodoUpdateInput = {
id?: import('.prisma/client').Prisma.TodoUpdateInput["id"];
title?: import('.prisma/client').Prisma.TodoUpdateInput["title"];
};
export declare namespace Lists {
export type Todo = import('@keystone-6/core').ListConfig<Lists.Todo.TypeInfo, any>;
Expand All @@ -123,8 +133,8 @@ export declare namespace Lists {
orderBy: TodoOrderByInput;
};
prisma: {
create: Record<string, any>; // TODO: actual types
update: Record<string, any>; // TODO: actual types
create: ResolvedTodoCreateInput
update: ResolvedTodoUpdateInput
};
all: __TypeInfo;
};
Expand All @@ -145,6 +155,8 @@ export type Lists = {
[Key in keyof TypeInfo['lists']]?: import('@keystone-6/core').ListConfig<TypeInfo['lists'][Key], any>
} & Record<string, import('@keystone-6/core').ListConfig<any, any>>;
export {}
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯ node_modules/.keystone/types.js ⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯
`;

0 comments on commit 6f2439b

Please sign in to comment.