From 0582f883c517e5fdc2373ac0a85717a7bfeec018 Mon Sep 17 00:00:00 2001 From: Advaith Date: Sat, 27 Mar 2021 08:40:14 -0700 Subject: [PATCH] feat(APIBaseInteraction): add application_id (#98) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- deno/v8/payloads/interactions.ts | 4 ++++ v8/payloads/interactions.ts | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/deno/v8/payloads/interactions.ts b/deno/v8/payloads/interactions.ts index c744c8bcf..000949634 100644 --- a/deno/v8/payloads/interactions.ts +++ b/deno/v8/payloads/interactions.ts @@ -84,6 +84,10 @@ export interface APIBaseInteraction { * ID of the interaction */ id: Snowflake; + /** + * ID of the application this interaction is for + */ + application_id: Snowflake; /** * The type of interaction */ diff --git a/v8/payloads/interactions.ts b/v8/payloads/interactions.ts index 15ab59f77..c75fc1484 100644 --- a/v8/payloads/interactions.ts +++ b/v8/payloads/interactions.ts @@ -84,6 +84,10 @@ export interface APIBaseInteraction { * ID of the interaction */ id: Snowflake; + /** + * ID of the application this interaction is for + */ + application_id: Snowflake; /** * The type of interaction */