initial commit
This commit is contained in:
26
packages/db/shared/schemas/objects/NotificationMaxAggregateInput.schema.d.ts
vendored
Normal file
26
packages/db/shared/schemas/objects/NotificationMaxAggregateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const NotificationMaxAggregateInputObjectSchema: z.ZodType<Prisma.NotificationMaxAggregateInputType>;
|
||||
export declare const NotificationMaxAggregateInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
userId: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
type: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
message: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
createdAt: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
read: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
message?: true | undefined;
|
||||
type?: true | undefined;
|
||||
createdAt?: true | undefined;
|
||||
id?: true | undefined;
|
||||
userId?: true | undefined;
|
||||
read?: true | undefined;
|
||||
}, {
|
||||
message?: true | undefined;
|
||||
type?: true | undefined;
|
||||
createdAt?: true | undefined;
|
||||
id?: true | undefined;
|
||||
userId?: true | undefined;
|
||||
read?: true | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=NotificationMaxAggregateInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user