You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be nice to have support for inputting these when uploading binary data:
Resettable streams (i.e. () => NodeJS.ReadableStream | ReadableStream<Uint8Array>). core-rest-pipeline supports this already so probably just need to update the types here
For multipart/form-data file uploads, we could infer the filename from the path field on fs.ReadableStream when a stream created with fs.createReadStream is passed in, much like we do for File objects. Currently this does not happen and the user has to specify the filename separately.
The text was updated successfully, but these errors were encountered:
Would be nice to have support for inputting these when uploading binary data:
() => NodeJS.ReadableStream | ReadableStream<Uint8Array>
). core-rest-pipeline supports this already so probably just need to update the types heremultipart/form-data
file uploads, we could infer the filename from thepath
field onfs.ReadableStream
when a stream created withfs.createReadStream
is passed in, much like we do forFile
objects. Currently this does not happen and the user has to specify the filename separately.The text was updated successfully, but these errors were encountered: