Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
48eca40
Support streaming streaming responses for callable functions.
taeold Oct 25, 2024
21db516
Merge branch 'main' into dl-fn-streaming
taeold Oct 25, 2024
d28863c
Support AbortSignal
taeold Oct 25, 2024
a02b25f
Update API reports
taeold Oct 25, 2024
ab99970
Re-introduce fetchImpl.
taeold Oct 27, 2024
8ec2787
Merge branch 'dl-fn-streaming' of https://github.com/firebase/firebas…
taeold Oct 27, 2024
4aee03e
Add more tests.
taeold Oct 27, 2024
fdc70d8
Update API reports
taeold Oct 27, 2024
55d9266
Add comment.
taeold Oct 27, 2024
9a430cc
Merge branch 'dl-fn-streaming' of https://github.com/firebase/firebas…
taeold Oct 28, 2024
785e906
Allow reading multiple data chunks from single read() chunk.
taeold Nov 6, 2024
861edce
Fix lint errors.
taeold Nov 6, 2024
4b188d0
Don't swallow errors.
taeold Nov 6, 2024
39c44d5
Fix linter issues.
taeold Nov 6, 2024
1c1f533
Update API reports
taeold Nov 7, 2024
b481220
Merge remote-tracking branch 'origin/main' into dl-fn-streaming
taeold Nov 9, 2024
9f4c973
Merge branch 'dl-fn-streaming' of https://github.com/firebase/firebas…
taeold Nov 9, 2024
ebd74cb
Add changeset.
taeold Nov 9, 2024
cf56623
Update code to use pump() patter.
taeold Nov 22, 2024
cfbcd46
Refactor implementation for better readability.
taeold Nov 22, 2024
1801c53
Nits.
taeold Nov 22, 2024
bf4f5e9
More nits.
taeold Nov 22, 2024
c6ef6a0
Merge branch 'main' into dl-fn-streaming
taeold Nov 22, 2024
31998c2
Revert changes to the functions-type package.
taeold Nov 22, 2024
72e87b4
Remove duplicate entry in the package script for functions.
taeold Nov 22, 2024
d8ebbb8
Run formatter.
taeold Nov 22, 2024
fd2cb15
Generate updated docs.
taeold Nov 22, 2024
9a85bb2
Refactor code to make auth headers.
taeold Nov 23, 2024
f581b61
Fix misc.
taeold Nov 23, 2024
b9a42e5
Update API reports
taeold Nov 23, 2024
d0cc907
Revert uninteded changes to untouched test case.
taeold Dec 3, 2024
f773110
Add docstring comments to utility functions.
taeold Dec 3, 2024
aa993f0
Merge branch 'dl-fn-streaming' of https://github.com/firebase/firebas…
taeold Dec 3, 2024
9ae31c0
Correct documentation on AbortSignal.
taeold Dec 3, 2024
327c1cb
Run formatter
taeold Dec 3, 2024
5fb40f1
Update docs.
taeold Dec 3, 2024
9ea463d
Update docs per comments.
taeold Dec 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correct documentation on AbortSignal.
  • Loading branch information
taeold committed Dec 3, 2024
commit 9ae31c075311e3afae7f8854424f8e9c16b3d98a
2 changes: 1 addition & 1 deletion packages/functions/src/public-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export interface HttpsCallableOptions {
export interface HttpsCallableStreamOptions {
/**
* An AbortSignal that can be used to cancel the streaming response. When the signal is aborted,
* both the underlying connection and stream will be terminated.
* the underlying http connection will be terminated.
*/
signal?: AbortSignal;
/**
Expand Down
Loading