import * as v from "valibot" /** * A pointer to a record in a database. */ export const notionRecordPointerSchema = v.object({ id: v.string(), table: v.string(), }) export type NotionRecordPointer = v.InferOutput< typeof notionRecordPointerSchema >