fix: Application#owner is optional (#1012)

This commit is contained in:
rigormorrtiss
2021-06-03 09:33:19 +02:00
committed by GitHub
parent b8f0e025ff
commit a92143e919
+1 -1
View File
@@ -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<User>;
owner?: Partial<User>;
/** 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 */