From 073de2b97f767b5ff4003de732bcc1791ce4d1e6 Mon Sep 17 00:00:00 2001 From: lts20050703 <87189679+lts20050703@users.noreply.github.com> Date: Sat, 18 Dec 2021 13:28:59 +0700 Subject: [PATCH] #1828 --- src/types/auditLog/auditLog.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/types/auditLog/auditLog.ts b/src/types/auditLog/auditLog.ts index 5e7b5cb40..39dac4957 100644 --- a/src/types/auditLog/auditLog.ts +++ b/src/types/auditLog/auditLog.ts @@ -3,6 +3,7 @@ import { Integration } from "../integrations/integration.ts"; import { User } from "../users/user.ts"; import { Webhook } from "../webhooks/webhook.ts"; import { AuditLogEntry } from "./auditLogEntry.ts"; +import { ScheduledEvent } from "../guilds/scheduledEvents.ts"; /** https://discord.com/developers/docs/resources/audit-log#audit-log-object */ export interface AuditLog { @@ -16,4 +17,6 @@ export interface AuditLog { integrations: Partial[]; /** List of threads found in the audit log. */ threads: Channel[]; + /** List of guild scheduled events found in the audit log */ + scheduledEvents: ScheduledEvent[]; }