fix(User): use Snowflake for DM recipient_id (#1612)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Almeida
2026-04-06 19:48:05 +03:00
committed by GitHub
co-authored by Claude Opus 4.6
parent 1506ff0d2b
commit 3a296fa929
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ export interface RESTPostAPICurrentUserCreateDMChannelJSONBody {
/**
* The recipient to open a DM channel with
*/
recipient_id: string;
recipient_id: Snowflake;
}
/**
+1 -1
View File
@@ -101,7 +101,7 @@ export interface RESTPostAPICurrentUserCreateDMChannelJSONBody {
/**
* The recipient to open a DM channel with
*/
recipient_id: string;
recipient_id: Snowflake;
}
/**
+1 -1
View File
@@ -101,7 +101,7 @@ export interface RESTPostAPICurrentUserCreateDMChannelJSONBody {
/**
* The recipient to open a DM channel with
*/
recipient_id: string;
recipient_id: Snowflake;
}
/**
+1 -1
View File
@@ -101,7 +101,7 @@ export interface RESTPostAPICurrentUserCreateDMChannelJSONBody {
/**
* The recipient to open a DM channel with
*/
recipient_id: string;
recipient_id: Snowflake;
}
/**