From a92143e9196a65c760503c149592867663deadff Mon Sep 17 00:00:00 2001 From: rigormorrtiss Date: Thu, 3 Jun 2021 11:33:19 +0400 Subject: [PATCH] fix: Application#owner is optional (#1012) --- src/types/applications/application.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/applications/application.ts b/src/types/applications/application.ts index 0febc1ebc..904901286 100644 --- a/src/types/applications/application.ts +++ b/src/types/applications/application.ts @@ -23,7 +23,7 @@ export interface Application { /** The url of the app's privacy policy */ privacyPolicyUrl?: string; /** Partial user object containing info on the owner of the application */ - owner: Partial; + owner?: Partial; /** If this application is a game sold on Discord, this field will be the summary field for the store page of its primary sku */ summary: string; /** The hex encoded key for verification in interactions and the GameSDK's GetTicket */