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
We currently type the blob type as specifically an Array of numbers, which feels silly in contexts where we are working with Blobs and ArrayBuffers.
Instead, the types allowed should include Blob and ArrayBuffer, and we should add support in the JS Agent for accepting those compatible values and encoding them appropriately.
Acceptance criteria:
Blobs can accept Array<Number> | Blob | ArrayBuffer in TS Codegen
The text was updated successfully, but these errors were encountered:
We currently type the blob type as specifically an Array of numbers, which feels silly in contexts where we are working with Blobs and ArrayBuffers.
Instead, the types allowed should include Blob and ArrayBuffer, and we should add support in the JS Agent for accepting those compatible values and encoding them appropriately.
Acceptance criteria:
Array<Number> | Blob | ArrayBuffer
in TS CodegenThe text was updated successfully, but these errors were encountered: