Skip to content

Commit

Permalink
feat(RESTPostAPIWebhookWithTokenJSONBody): add applied_tags (#855)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdanialraza committed Dec 5, 2023
1 parent 72a78a4 commit b4226bb
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/rest/v10/webhook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions deno/rest/v9/webhook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions rest/v10/webhook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions rest/v9/webhook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down

1 comment on commit b4226bb

@vercel
Copy link

@vercel vercel bot commented on b4226bb Dec 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.