66/* eslint-disable */
77
88import { type SchemaType as $Schema } from "./schema-lite" ;
9- import type { FindManyArgs as $FindManyArgs , FindUniqueArgs as $FindUniqueArgs , FindFirstArgs as $FindFirstArgs , CreateArgs as $CreateArgs , CreateManyArgs as $CreateManyArgs , CreateManyAndReturnArgs as $CreateManyAndReturnArgs , UpdateArgs as $UpdateArgs , UpdateManyArgs as $UpdateManyArgs , UpdateManyAndReturnArgs as $UpdateManyAndReturnArgs , UpsertArgs as $UpsertArgs , DeleteArgs as $DeleteArgs , DeleteManyArgs as $DeleteManyArgs , CountArgs as $CountArgs , AggregateArgs as $AggregateArgs , GroupByArgs as $GroupByArgs , WhereInput as $WhereInput , SelectInput as $SelectInput , IncludeInput as $IncludeInput , OmitInput as $OmitInput , QueryOptions as $QueryOptions } from "@zenstackhq/orm" ;
9+ import type { FindManyArgs as $FindManyArgs , FindUniqueArgs as $FindUniqueArgs , FindFirstArgs as $FindFirstArgs , ExistsArgs as $ExistsArgs , CreateArgs as $CreateArgs , CreateManyArgs as $CreateManyArgs , CreateManyAndReturnArgs as $CreateManyAndReturnArgs , UpdateArgs as $UpdateArgs , UpdateManyArgs as $UpdateManyArgs , UpdateManyAndReturnArgs as $UpdateManyAndReturnArgs , UpsertArgs as $UpsertArgs , DeleteArgs as $DeleteArgs , DeleteManyArgs as $DeleteManyArgs , CountArgs as $CountArgs , AggregateArgs as $AggregateArgs , GroupByArgs as $GroupByArgs , WhereInput as $WhereInput , SelectInput as $SelectInput , IncludeInput as $IncludeInput , OmitInput as $OmitInput , QueryOptions as $QueryOptions } from "@zenstackhq/orm" ;
1010import type { SimplifiedPlainResult as $Result , SelectIncludeOmit as $SelectIncludeOmit } from "@zenstackhq/orm" ;
1111export type UserFindManyArgs = $FindManyArgs < $Schema , "User" > ;
1212export type UserFindUniqueArgs = $FindUniqueArgs < $Schema , "User" > ;
1313export type UserFindFirstArgs = $FindFirstArgs < $Schema , "User" > ;
14+ export type UserExistsArgs = $ExistsArgs < $Schema , "User" > ;
1415export type UserCreateArgs = $CreateArgs < $Schema , "User" > ;
1516export type UserCreateManyArgs = $CreateManyArgs < $Schema , "User" > ;
1617export type UserCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "User" > ;
@@ -31,6 +32,7 @@ export type UserGetPayload<Args extends $SelectIncludeOmit<$Schema, "User", true
3132export type PostFindManyArgs = $FindManyArgs < $Schema , "Post" > ;
3233export type PostFindUniqueArgs = $FindUniqueArgs < $Schema , "Post" > ;
3334export type PostFindFirstArgs = $FindFirstArgs < $Schema , "Post" > ;
35+ export type PostExistsArgs = $ExistsArgs < $Schema , "Post" > ;
3436export type PostCreateArgs = $CreateArgs < $Schema , "Post" > ;
3537export type PostCreateManyArgs = $CreateManyArgs < $Schema , "Post" > ;
3638export type PostCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "Post" > ;
@@ -51,6 +53,7 @@ export type PostGetPayload<Args extends $SelectIncludeOmit<$Schema, "Post", true
5153export type CategoryFindManyArgs = $FindManyArgs < $Schema , "Category" > ;
5254export type CategoryFindUniqueArgs = $FindUniqueArgs < $Schema , "Category" > ;
5355export type CategoryFindFirstArgs = $FindFirstArgs < $Schema , "Category" > ;
56+ export type CategoryExistsArgs = $ExistsArgs < $Schema , "Category" > ;
5457export type CategoryCreateArgs = $CreateArgs < $Schema , "Category" > ;
5558export type CategoryCreateManyArgs = $CreateManyArgs < $Schema , "Category" > ;
5659export type CategoryCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "Category" > ;
@@ -71,6 +74,7 @@ export type CategoryGetPayload<Args extends $SelectIncludeOmit<$Schema, "Categor
7174export type FooFindManyArgs = $FindManyArgs < $Schema , "Foo" > ;
7275export type FooFindUniqueArgs = $FindUniqueArgs < $Schema , "Foo" > ;
7376export type FooFindFirstArgs = $FindFirstArgs < $Schema , "Foo" > ;
77+ export type FooExistsArgs = $ExistsArgs < $Schema , "Foo" > ;
7478export type FooCreateArgs = $CreateArgs < $Schema , "Foo" > ;
7579export type FooCreateManyArgs = $CreateManyArgs < $Schema , "Foo" > ;
7680export type FooCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "Foo" > ;
@@ -91,6 +95,7 @@ export type FooGetPayload<Args extends $SelectIncludeOmit<$Schema, "Foo", true>,
9195export type BarFindManyArgs = $FindManyArgs < $Schema , "Bar" > ;
9296export type BarFindUniqueArgs = $FindUniqueArgs < $Schema , "Bar" > ;
9397export type BarFindFirstArgs = $FindFirstArgs < $Schema , "Bar" > ;
98+ export type BarExistsArgs = $ExistsArgs < $Schema , "Bar" > ;
9499export type BarCreateArgs = $CreateArgs < $Schema , "Bar" > ;
95100export type BarCreateManyArgs = $CreateManyArgs < $Schema , "Bar" > ;
96101export type BarCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "Bar" > ;
0 commit comments