File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ export function httpsCallableFromURL<
226226 data ?: RequestData | null ,
227227 options ?: HttpsCallableStreamOptions
228228 ) => {
229- return streamAtURL ( functionsInstance , url , options || { } ) ;
229+ return streamAtURL ( functionsInstance , url , data , options || { } ) ;
230230 } ;
231231 return callable as HttpsCallable < RequestData , ResponseData , StreamData > ;
232232}
@@ -278,7 +278,7 @@ async function postJSON(
278278async function makeAuthHeaders (
279279 functionsInstance : FunctionsService ,
280280 options : HttpsCallableOptions
281- ) {
281+ ) : Promise < Record < string , string > > {
282282 const headers : Record < string , string > = { } ;
283283 const context = await functionsInstance . contextProvider . getContext (
284284 options . limitedUseAppCheckTokens
You can’t perform that action at this time.
0 commit comments