Skip to content

release: 0.6.1 #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
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
Next Next commit
chore(internal): version bump
  • Loading branch information
stainless-app[bot] committed Jun 10, 2025
commit 94014af9bfcfcf6e676dcc7934687db8704b429f
2 changes: 1 addition & 1 deletion src/internal/uploads.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const createForm = async <T = Record<string, unknown>>(

// We check for Blob not File because Bun.File doesn't inherit from File,
// but they both inherit from Blob and have a `name` property at runtime.
const isNamedBlob = (value: object) => value instanceof Blob && 'name' in value;
const isNamedBlob = (value: unknown) => value instanceof Blob && 'name' in value;

const isUploadable = (value: unknown) =>
typeof value === 'object' &&
Expand Down