feat(RESTPostAPIWebhookWithTokenJSONBody): add applied_tags (#855)

This commit is contained in:
Danial Raza
2023-12-05 18:28:52 +01:00
committed by GitHub
parent 72a78a4f6f
commit b4226bb708
4 changed files with 16 additions and 0 deletions

View File

@@ -150,6 +150,10 @@ export interface RESTPostAPIWebhookWithTokenJSONBody {
* Available only if the webhook is in a forum channel and a thread is not specified in {@link RESTPostAPIWebhookWithTokenQuery.thread_id} query parameter
*/
thread_name?: string | undefined;
/**
* Array of tag ids to apply to the thread
*/
applied_tags?: Snowflake[] | undefined;
}
/**

View File

@@ -150,6 +150,10 @@ export interface RESTPostAPIWebhookWithTokenJSONBody {
* Available only if the webhook is in a forum channel and a thread is not specified in {@link RESTPostAPIWebhookWithTokenQuery.thread_id} query parameter
*/
thread_name?: string | undefined;
/**
* Array of tag ids to apply to the thread
*/
applied_tags?: Snowflake[] | undefined;
}
/**

View File

@@ -150,6 +150,10 @@ export interface RESTPostAPIWebhookWithTokenJSONBody {
* Available only if the webhook is in a forum channel and a thread is not specified in {@link RESTPostAPIWebhookWithTokenQuery.thread_id} query parameter
*/
thread_name?: string | undefined;
/**
* Array of tag ids to apply to the thread
*/
applied_tags?: Snowflake[] | undefined;
}
/**

View File

@@ -150,6 +150,10 @@ export interface RESTPostAPIWebhookWithTokenJSONBody {
* Available only if the webhook is in a forum channel and a thread is not specified in {@link RESTPostAPIWebhookWithTokenQuery.thread_id} query parameter
*/
thread_name?: string | undefined;
/**
* Array of tag ids to apply to the thread
*/
applied_tags?: Snowflake[] | undefined;
}
/**