feat: add Job Monitor page with cron job logging and Selenium queue status
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { CronJobLogWhereInputObjectSchema as CronJobLogWhereInputObjectSchema } from './objects/CronJobLogWhereInput.schema';
|
||||
|
||||
export const CronJobLogDeleteManySchema: z.ZodType<Prisma.CronJobLogDeleteManyArgs> = z.object({ where: CronJobLogWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.CronJobLogDeleteManyArgs>;
|
||||
|
||||
export const CronJobLogDeleteManyZodSchema = z.object({ where: CronJobLogWhereInputObjectSchema.optional() }).strict();
|
||||
Reference in New Issue
Block a user