Skip to content

feat(api): api update #628

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

Merged
merged 1 commit into from
Mar 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 41
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-69819ddc6d03624ee8d880317fca03afab50a0a843218f1d9f14616e8a003dad.yml
openapi_spec_hash: aaaf1428c428b79ff61b7cd02c7eee5c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-63d6857158c2634529b468b53df0b9c02f42d6f9783399939a38986e3137a86f.yml
openapi_spec_hash: 2c3aea6ae3e0a3dd7ac65c25b8fdc24d
config_hash: 8303e755d3e16cf28542d5f0aec83851
2 changes: 1 addition & 1 deletion src/finch/types/sandbox/directory_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class BodyManager(TypedDict, total=False):


class BodyPhoneNumber(TypedDict, total=False):
data: str
data: Optional[str]

type: Optional[Literal["work", "personal"]]

Expand Down
2 changes: 1 addition & 1 deletion src/finch/types/sandbox/individual_update_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ class Email(TypedDict, total=False):


class PhoneNumber(TypedDict, total=False):
data: str
data: Optional[str]

type: Optional[Literal["work", "personal"]]