Skip to content

Commit

Permalink
update test snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
dcousens committed Mar 14, 2023
1 parent 80d232c commit 68feb4a
Showing 1 changed file with 54 additions and 54 deletions.
108 changes: 54 additions & 54 deletions packages/core/src/scripts/tests/__snapshots__/artifacts.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ type Scalars = {
readonly String: string;
readonly Int: number;
readonly Float: number;
readonly JSON: import("@keystone-6/core/types").JSONValue;
readonly Decimal: import("@keystone-6/core/types").Decimal | string;
readonly JSON: import('@keystone-6/core/types').JSONValue;
readonly Decimal: import('@keystone-6/core/types').Decimal | string;
};
export type TodoWhereUniqueInput = {
readonly id?: Scalars["ID"] | null;
readonly id?: Scalars['ID'] | null;
};
export type TodoWhereInput = {
Expand All @@ -25,41 +25,41 @@ export type TodoWhereInput = {
};
export type IDFilter = {
readonly equals?: Scalars["ID"] | null;
readonly in?: ReadonlyArray<Scalars["ID"]> | Scalars["ID"] | null;
readonly notIn?: ReadonlyArray<Scalars["ID"]> | Scalars["ID"] | null;
readonly lt?: Scalars["ID"] | null;
readonly lte?: Scalars["ID"] | null;
readonly gt?: Scalars["ID"] | null;
readonly gte?: Scalars["ID"] | null;
readonly equals?: Scalars['ID'] | null;
readonly in?: ReadonlyArray<Scalars['ID']> | Scalars['ID'] | null;
readonly notIn?: ReadonlyArray<Scalars['ID']> | Scalars['ID'] | null;
readonly lt?: Scalars['ID'] | null;
readonly lte?: Scalars['ID'] | null;
readonly gt?: Scalars['ID'] | null;
readonly gte?: Scalars['ID'] | null;
readonly not?: IDFilter | null;
};
export type StringFilter = {
readonly equals?: Scalars["String"] | null;
readonly in?: ReadonlyArray<Scalars["String"]> | Scalars["String"] | null;
readonly notIn?: ReadonlyArray<Scalars["String"]> | Scalars["String"] | null;
readonly lt?: Scalars["String"] | null;
readonly lte?: Scalars["String"] | null;
readonly gt?: Scalars["String"] | null;
readonly gte?: Scalars["String"] | null;
readonly contains?: Scalars["String"] | null;
readonly startsWith?: Scalars["String"] | null;
readonly endsWith?: Scalars["String"] | null;
readonly equals?: Scalars['String'] | null;
readonly in?: ReadonlyArray<Scalars['String']> | Scalars['String'] | null;
readonly notIn?: ReadonlyArray<Scalars['String']> | Scalars['String'] | null;
readonly lt?: Scalars['String'] | null;
readonly lte?: Scalars['String'] | null;
readonly gt?: Scalars['String'] | null;
readonly gte?: Scalars['String'] | null;
readonly contains?: Scalars['String'] | null;
readonly startsWith?: Scalars['String'] | null;
readonly endsWith?: Scalars['String'] | null;
readonly not?: NestedStringFilter | null;
};
export type NestedStringFilter = {
readonly equals?: Scalars["String"] | null;
readonly in?: ReadonlyArray<Scalars["String"]> | Scalars["String"] | null;
readonly notIn?: ReadonlyArray<Scalars["String"]> | Scalars["String"] | null;
readonly lt?: Scalars["String"] | null;
readonly lte?: Scalars["String"] | null;
readonly gt?: Scalars["String"] | null;
readonly gte?: Scalars["String"] | null;
readonly contains?: Scalars["String"] | null;
readonly startsWith?: Scalars["String"] | null;
readonly endsWith?: Scalars["String"] | null;
readonly equals?: Scalars['String'] | null;
readonly in?: ReadonlyArray<Scalars['String']> | Scalars['String'] | null;
readonly notIn?: ReadonlyArray<Scalars['String']> | Scalars['String'] | null;
readonly lt?: Scalars['String'] | null;
readonly lte?: Scalars['String'] | null;
readonly gt?: Scalars['String'] | null;
readonly gte?: Scalars['String'] | null;
readonly contains?: Scalars['String'] | null;
readonly startsWith?: Scalars['String'] | null;
readonly endsWith?: Scalars['String'] | null;
readonly not?: NestedStringFilter | null;
};
Expand All @@ -69,11 +69,11 @@ export type TodoOrderByInput = {
};
export type OrderDirection =
| "asc"
| "desc";
| 'asc'
| 'desc';
export type TodoUpdateInput = {
readonly title?: Scalars["String"] | null;
readonly title?: Scalars['String'] | null;
};
export type TodoUpdateArgs = {
Expand All @@ -82,57 +82,57 @@ export type TodoUpdateArgs = {
};
export type TodoCreateInput = {
readonly title?: Scalars["String"] | null;
readonly title?: Scalars['String'] | null;
};
export type KeystoneAdminUIFieldMetaIsNonNull =
| "read"
| "create"
| "update";
| 'read'
| 'create'
| 'update';
export type KeystoneAdminUIFieldMetaCreateViewFieldMode =
| "edit"
| "hidden";
| 'edit'
| 'hidden';
export type KeystoneAdminUIFieldMetaListViewFieldMode =
| "read"
| "hidden";
| 'read'
| 'hidden';
export type KeystoneAdminUIFieldMetaItemViewFieldMode =
| "edit"
| "read"
| "hidden";
| 'edit'
| 'read'
| 'hidden';
export type KeystoneAdminUIFieldMetaItemViewFieldPosition =
| "form"
| "sidebar";
| 'form'
| 'sidebar';
export type QueryMode =
| "default"
| "insensitive";
| 'default'
| 'insensitive';
export type KeystoneAdminUISortDirection =
| "ASC"
| "DESC";
| 'ASC'
| 'DESC';
type ResolvedTodoCreateInput = {
id?: undefined;
title?: import('@prisma/client').Prisma.TodoCreateInput["title"];
title?: import('@prisma/client').Prisma.TodoCreateInput['title'];
};
type ResolvedTodoUpdateInput = {
id?: undefined;
title?: import('@prisma/client').Prisma.TodoUpdateInput["title"];
title?: import('@prisma/client').Prisma.TodoUpdateInput['title'];
};
export declare namespace Lists {
export type Todo = import('@keystone-6/core').ListConfig<Lists.Todo.TypeInfo, any>;
namespace Todo {
export type Item = import('@prisma/client').Todo;
export type TypeInfo = {
key: "Todo";
key: 'Todo';
isSingleton: false;
fields: "id" | "title"
fields: 'id' | 'title'
item: Item;
inputs: {
where: TodoWhereInput;
Expand Down

0 comments on commit 68feb4a

Please sign in to comment.