···1import { z } from 'zod';
2import { IngredientObject, StepObject } from './defs.js';
34-export const RecipeCollection = 'moe.hayden.cookware.recipe' as const;
56export const RecipeRecord = z.object({
7 title: z.string().max(3000, 'Recipe titles must be under 3000 characters.'),
···1import { z } from 'zod';
2import { IngredientObject, StepObject } from './defs.js';
34+export const RecipeCollection = 'blue.recipes.feed.recipe' as const;
56export const RecipeRecord = z.object({
7 title: z.string().max(3000, 'Recipe titles must be under 3000 characters.'),