- Add AI Dental Shopping to sidebar with Search/Tag and Login Info sub-pages - Build full-stack Login Info CRUD: save vendor name, website, username, password per user - Add ShoppingVendor Prisma model, run db push, regenerate client and Zod schemas - Add storage layer, REST API at /api/shopping-vendors/, and frontend table with add/edit/delete modal Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
34 lines
3.0 KiB
TypeScript
34 lines
3.0 KiB
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
import { ShoppingVendorIncludeObjectSchema as ShoppingVendorIncludeObjectSchema } from './objects/ShoppingVendorInclude.schema';
|
|
import { ShoppingVendorOrderByWithRelationInputObjectSchema as ShoppingVendorOrderByWithRelationInputObjectSchema } from './objects/ShoppingVendorOrderByWithRelationInput.schema';
|
|
import { ShoppingVendorWhereInputObjectSchema as ShoppingVendorWhereInputObjectSchema } from './objects/ShoppingVendorWhereInput.schema';
|
|
import { ShoppingVendorWhereUniqueInputObjectSchema as ShoppingVendorWhereUniqueInputObjectSchema } from './objects/ShoppingVendorWhereUniqueInput.schema';
|
|
import { ShoppingVendorScalarFieldEnumSchema } from './enums/ShoppingVendorScalarFieldEnum.schema';
|
|
|
|
// Select schema needs to be in file to prevent circular imports
|
|
//------------------------------------------------------
|
|
|
|
export const ShoppingVendorFindFirstOrThrowSelectSchema: z.ZodType<Prisma.ShoppingVendorSelect> = z.object({
|
|
id: z.boolean().optional(),
|
|
userId: z.boolean().optional(),
|
|
vendorName: z.boolean().optional(),
|
|
websiteUrl: z.boolean().optional(),
|
|
loginUsername: z.boolean().optional(),
|
|
loginPassword: z.boolean().optional(),
|
|
user: z.boolean().optional()
|
|
}).strict() as unknown as z.ZodType<Prisma.ShoppingVendorSelect>;
|
|
|
|
export const ShoppingVendorFindFirstOrThrowSelectZodSchema = z.object({
|
|
id: z.boolean().optional(),
|
|
userId: z.boolean().optional(),
|
|
vendorName: z.boolean().optional(),
|
|
websiteUrl: z.boolean().optional(),
|
|
loginUsername: z.boolean().optional(),
|
|
loginPassword: z.boolean().optional(),
|
|
user: z.boolean().optional()
|
|
}).strict();
|
|
|
|
export const ShoppingVendorFindFirstOrThrowSchema: z.ZodType<Prisma.ShoppingVendorFindFirstOrThrowArgs> = z.object({ select: ShoppingVendorFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => ShoppingVendorIncludeObjectSchema.optional()), orderBy: z.union([ShoppingVendorOrderByWithRelationInputObjectSchema, ShoppingVendorOrderByWithRelationInputObjectSchema.array()]).optional(), where: ShoppingVendorWhereInputObjectSchema.optional(), cursor: ShoppingVendorWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ShoppingVendorScalarFieldEnumSchema, ShoppingVendorScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType<Prisma.ShoppingVendorFindFirstOrThrowArgs>;
|
|
|
|
export const ShoppingVendorFindFirstOrThrowZodSchema = z.object({ select: ShoppingVendorFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => ShoppingVendorIncludeObjectSchema.optional()), orderBy: z.union([ShoppingVendorOrderByWithRelationInputObjectSchema, ShoppingVendorOrderByWithRelationInputObjectSchema.array()]).optional(), where: ShoppingVendorWhereInputObjectSchema.optional(), cursor: ShoppingVendorWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ShoppingVendorScalarFieldEnumSchema, ShoppingVendorScalarFieldEnumSchema.array()]).optional() }).strict(); |