fix(onesignal): OSNotification.app_id is optional (#946)

OSNotification::app_id is not required when sending a selfNotification.
This commit is contained in:
Josh Gibbs 2017-01-09 02:07:57 -08:00 committed by Ibby Hadeed
parent 6ddd2aa184
commit ebf07161b6

View File

@ -26,7 +26,7 @@ export interface OSNotification {
* **ANDROID** - Notification is a summary notification for a group this will contain all notification payloads it was created from.
*/
groupedNotifications?: OSNotificationPayload[];
app_id: string;
app_id?: string;
contents: any;
headings?: any;
isIos?: boolean;