66/* eslint-disable */
77
88import { type SchemaType as $Schema } from "./schema" ;
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 CommentFindManyArgs = $FindManyArgs < $Schema , "Comment" > ;
3233export type CommentFindUniqueArgs = $FindUniqueArgs < $Schema , "Comment" > ;
3334export type CommentFindFirstArgs = $FindFirstArgs < $Schema , "Comment" > ;
35+ export type CommentExistsArgs = $ExistsArgs < $Schema , "Comment" > ;
3436export type CommentCreateArgs = $CreateArgs < $Schema , "Comment" > ;
3537export type CommentCreateManyArgs = $CreateManyArgs < $Schema , "Comment" > ;
3638export type CommentCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "Comment" > ;
@@ -51,6 +53,7 @@ export type CommentGetPayload<Args extends $SelectIncludeOmit<$Schema, "Comment"
5153export type AssetFindManyArgs = $FindManyArgs < $Schema , "Asset" > ;
5254export type AssetFindUniqueArgs = $FindUniqueArgs < $Schema , "Asset" > ;
5355export type AssetFindFirstArgs = $FindFirstArgs < $Schema , "Asset" > ;
56+ export type AssetExistsArgs = $ExistsArgs < $Schema , "Asset" > ;
5457export type AssetCreateArgs = $CreateArgs < $Schema , "Asset" > ;
5558export type AssetCreateManyArgs = $CreateManyArgs < $Schema , "Asset" > ;
5659export type AssetCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "Asset" > ;
@@ -71,6 +74,7 @@ export type AssetGetPayload<Args extends $SelectIncludeOmit<$Schema, "Asset", tr
7174export type VideoFindManyArgs = $FindManyArgs < $Schema , "Video" > ;
7275export type VideoFindUniqueArgs = $FindUniqueArgs < $Schema , "Video" > ;
7376export type VideoFindFirstArgs = $FindFirstArgs < $Schema , "Video" > ;
77+ export type VideoExistsArgs = $ExistsArgs < $Schema , "Video" > ;
7478export type VideoCreateArgs = $CreateArgs < $Schema , "Video" > ;
7579export type VideoCreateManyArgs = $CreateManyArgs < $Schema , "Video" > ;
7680export type VideoCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "Video" > ;
@@ -91,6 +95,7 @@ export type VideoGetPayload<Args extends $SelectIncludeOmit<$Schema, "Video", tr
9195export type RatedVideoFindManyArgs = $FindManyArgs < $Schema , "RatedVideo" > ;
9296export type RatedVideoFindUniqueArgs = $FindUniqueArgs < $Schema , "RatedVideo" > ;
9397export type RatedVideoFindFirstArgs = $FindFirstArgs < $Schema , "RatedVideo" > ;
98+ export type RatedVideoExistsArgs = $ExistsArgs < $Schema , "RatedVideo" > ;
9499export type RatedVideoCreateArgs = $CreateArgs < $Schema , "RatedVideo" > ;
95100export type RatedVideoCreateManyArgs = $CreateManyArgs < $Schema , "RatedVideo" > ;
96101export type RatedVideoCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "RatedVideo" > ;
@@ -111,6 +116,7 @@ export type RatedVideoGetPayload<Args extends $SelectIncludeOmit<$Schema, "Rated
111116export type ImageFindManyArgs = $FindManyArgs < $Schema , "Image" > ;
112117export type ImageFindUniqueArgs = $FindUniqueArgs < $Schema , "Image" > ;
113118export type ImageFindFirstArgs = $FindFirstArgs < $Schema , "Image" > ;
119+ export type ImageExistsArgs = $ExistsArgs < $Schema , "Image" > ;
114120export type ImageCreateArgs = $CreateArgs < $Schema , "Image" > ;
115121export type ImageCreateManyArgs = $CreateManyArgs < $Schema , "Image" > ;
116122export type ImageCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "Image" > ;
@@ -131,6 +137,7 @@ export type ImageGetPayload<Args extends $SelectIncludeOmit<$Schema, "Image", tr
131137export type GalleryFindManyArgs = $FindManyArgs < $Schema , "Gallery" > ;
132138export type GalleryFindUniqueArgs = $FindUniqueArgs < $Schema , "Gallery" > ;
133139export type GalleryFindFirstArgs = $FindFirstArgs < $Schema , "Gallery" > ;
140+ export type GalleryExistsArgs = $ExistsArgs < $Schema , "Gallery" > ;
134141export type GalleryCreateArgs = $CreateArgs < $Schema , "Gallery" > ;
135142export type GalleryCreateManyArgs = $CreateManyArgs < $Schema , "Gallery" > ;
136143export type GalleryCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "Gallery" > ;
0 commit comments