import { Schema, model } from "mongoose"; export const Event = model( "Event", new Schema( { source: { type: String, required: true }, key: { type: String, required: true }, data: { type: Object, default: {} }, }, { timestamps: { createdAt: true, updatedAt: false, }, }, ), );