diff --git a/src/finch/types/provider.py b/src/finch/types/provider.py index 2da2fbcb..880077a0 100644 --- a/src/finch/types/provider.py +++ b/src/finch/types/provider.py @@ -22,9 +22,8 @@ class Provider(BaseModel): manual: Optional[bool] = None """ - [DEPRECATED] Whether the Finch integration with this provider uses the Assisted - Connect Flow by default. This field is now deprecated. Please check for a `type` - of `assisted` in the `authentication_methods` field instead. + Whether the Finch integration with this provider uses the Assisted Connect Flow + by default. """ mfa_required: Optional[bool] = None diff --git a/src/finch/types/request_forwarding_forward_response.py b/src/finch/types/request_forwarding_forward_response.py index 267a4cf9..508c8e89 100644 --- a/src/finch/types/request_forwarding_forward_response.py +++ b/src/finch/types/request_forwarding_forward_response.py @@ -26,7 +26,7 @@ class Request(BaseModel): method: str """The HTTP method that was specified for the forwarded request. - Valid values include: `GET` , `POST` , `PUT` , `DELETE` , and `PATCH`. + Valid values include: `GET`, `POST`, `PUT` , `DELETE`, and `PATCH`. """ params: Optional[object]