From dfb9cc8c37d731e29a43d515abfe982e1067b5ea Mon Sep 17 00:00:00 2001 From: Danial Raza Date: Tue, 1 Jul 2025 23:44:24 +0200 Subject: [PATCH] feat(APIBaseGuildMember): add `unusual_dm_activity_until` --- deno/payloads/v10/guild.ts | 6 ++++++ deno/payloads/v9/guild.ts | 6 ++++++ payloads/v10/guild.ts | 6 ++++++ payloads/v9/guild.ts | 6 ++++++ 4 files changed, 24 insertions(+) diff --git a/deno/payloads/v10/guild.ts b/deno/payloads/v10/guild.ts index 8de64b27..bd386c6d 100644 --- a/deno/payloads/v10/guild.ts +++ b/deno/payloads/v10/guild.ts @@ -675,6 +675,12 @@ export interface APIBaseGuildMember { * Timestamp of when the time out will be removed; until then, they cannot interact with the guild */ communication_disabled_until?: string | null; + /** + * Timestamp of when the member will no longer be marked as having unusual DM activity + * + * @see {@link https://support.discord.com/hc/articles/15946797617431-Members-Page#h_01H5K0YX4XET5E6KP0Q1T9HWNP} + */ + unusual_dm_activity_until?: string | null; /** * The data for the member's guild avatar decoration * diff --git a/deno/payloads/v9/guild.ts b/deno/payloads/v9/guild.ts index fd8154e9..dfae3476 100644 --- a/deno/payloads/v9/guild.ts +++ b/deno/payloads/v9/guild.ts @@ -667,6 +667,12 @@ export interface APIBaseGuildMember { * Timestamp of when the time out will be removed; until then, they cannot interact with the guild */ communication_disabled_until?: string | null; + /** + * Timestamp of when the member will no longer be marked as having unusual DM activity + * + * @see {@link https://support.discord.com/hc/articles/15946797617431-Members-Page#h_01H5K0YX4XET5E6KP0Q1T9HWNP} + */ + unusual_dm_activity_until?: string | null; /** * The data for the member's guild avatar decoration * diff --git a/payloads/v10/guild.ts b/payloads/v10/guild.ts index b8faad81..bf5c8539 100644 --- a/payloads/v10/guild.ts +++ b/payloads/v10/guild.ts @@ -675,6 +675,12 @@ export interface APIBaseGuildMember { * Timestamp of when the time out will be removed; until then, they cannot interact with the guild */ communication_disabled_until?: string | null; + /** + * Timestamp of when the member will no longer be marked as having unusual DM activity + * + * @see {@link https://support.discord.com/hc/articles/15946797617431-Members-Page#h_01H5K0YX4XET5E6KP0Q1T9HWNP} + */ + unusual_dm_activity_until?: string | null; /** * The data for the member's guild avatar decoration * diff --git a/payloads/v9/guild.ts b/payloads/v9/guild.ts index f909f4bb..30afe557 100644 --- a/payloads/v9/guild.ts +++ b/payloads/v9/guild.ts @@ -667,6 +667,12 @@ export interface APIBaseGuildMember { * Timestamp of when the time out will be removed; until then, they cannot interact with the guild */ communication_disabled_until?: string | null; + /** + * Timestamp of when the member will no longer be marked as having unusual DM activity + * + * @see {@link https://support.discord.com/hc/articles/15946797617431-Members-Page#h_01H5K0YX4XET5E6KP0Q1T9HWNP} + */ + unusual_dm_activity_until?: string | null; /** * The data for the member's guild avatar decoration *