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 17:48:05 +01:00
committed by GitHub
parent 1506ff0d2b
commit 3a296fa929
4 changed files with 4 additions and 4 deletions

2
deno/rest/v10/user.ts generated
View File

@@ -101,7 +101,7 @@ export interface RESTPostAPICurrentUserCreateDMChannelJSONBody {
/**
* The recipient to open a DM channel with
*/
recipient_id: string;
recipient_id: Snowflake;
}
/**

2
deno/rest/v9/user.ts generated
View File

@@ -101,7 +101,7 @@ export interface RESTPostAPICurrentUserCreateDMChannelJSONBody {
/**
* The recipient to open a DM channel with
*/
recipient_id: string;
recipient_id: Snowflake;
}
/**

View File

@@ -101,7 +101,7 @@ export interface RESTPostAPICurrentUserCreateDMChannelJSONBody {
/**
* The recipient to open a DM channel with
*/
recipient_id: string;
recipient_id: Snowflake;
}
/**

View File

@@ -101,7 +101,7 @@ export interface RESTPostAPICurrentUserCreateDMChannelJSONBody {
/**
* The recipient to open a DM channel with
*/
recipient_id: string;
recipient_id: Snowflake;
}
/**