Skip to content
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

release: 0.3.0 #62

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
feat(client): allow passing NotGiven for body (#63)
fix(client): mark some request bodies as optional
  • Loading branch information
stainless-app[bot] committed Feb 21, 2025
commit a62be8a6e5ce5af0aeaec008db7f0a214222515d
2 changes: 1 addition & 1 deletion src/gitpod/_base_client.py
Original file line number Diff line number Diff line change
@@ -518,7 +518,7 @@ def _build_request(
# so that passing a `TypedDict` doesn't cause an error.
# https://github.com/microsoft/pyright/issues/3526#event-6715453066
params=self.qs.stringify(cast(Mapping[str, Any], params)) if params else None,
json=json_data,
json=json_data if is_given(json_data) else None,
files=files,
**kwargs,
)