Skip to content

Commit f581b61

Browse files
committed
Fix misc.
1 parent 9a85bb2 commit f581b61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/functions/src/service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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(
278278
async 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

0 commit comments

Comments
 (0)