Does the guildAuditLogEntryCreate event work on v14?

As the title states, I am curious if this event that was recently announced for v13 also works for v14. I have gave my bot the GUILD_MODERATION intent, and even tried giving the specific partial but no prevail. The event does not fire at all.
module.exports = {
    name: "guildAuditLogEntryCreate",
    async execute (auditLogEntry) {
        console.log(auditLogEntry);
        console.log('test')
    }
}
Was this page helpful?