From 8a7d1495f85ac8e993f77be351c229aba8512b25 Mon Sep 17 00:00:00 2001 From: Cameron Little Date: Sat, 15 Oct 2016 13:49:26 -0700 Subject: [PATCH] Minor fixes to fbsdk ui request params interface --- fbsdk/fbsdk.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fbsdk/fbsdk.d.ts b/fbsdk/fbsdk.d.ts index ddbe4d0264..0b66693347 100644 --- a/fbsdk/fbsdk.d.ts +++ b/fbsdk/fbsdk.d.ts @@ -29,13 +29,13 @@ interface PageTabDialogParams { interface RequestsDialogParams { method: string; // "apprequests" - app_id: string; + app_id?: string; redirect_uri?: string; to?: string; message: string; action_type?: string; // "send" | "askfor" | "turn" object_id?: string; - filters: string /* "app_users" | "app_non_users" */ | { + filters: string[] | { name: string; user_ids: string[]; };