diff --git a/.stats.yml b/.stats.yml index 83a48059..a39ef663 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 41 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-0ff5b707b4e3afcf4020e2d4b71bb4d4cfb25eac2828d6de5bee8d4d5d81550d.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-9c0b41ca8713a9440c624b0d08de0e6cbd9486978188afab2286ae67d8a97817.yml diff --git a/src/finch/resources/connect/sessions.py b/src/finch/resources/connect/sessions.py index e878e2e5..f9d743d7 100644 --- a/src/finch/resources/connect/sessions.py +++ b/src/finch/resources/connect/sessions.py @@ -69,7 +69,7 @@ def new( Create a new connect session for an employer Args: - minutes_to_expire: The number of minutes until the session expires (defaults to 20,160, which is 14 + minutes_to_expire: The number of minutes until the session expires (defaults to 43,200, which is 30 days) extra_headers: Send extra headers @@ -129,7 +129,7 @@ def reauthenticate( Args: connection_id: The ID of the existing connection to reauthenticate - minutes_to_expire: The number of minutes until the session expires (defaults to 20,160, which is 14 + minutes_to_expire: The number of minutes until the session expires (defaults to 43,200, which is 30 days) products: The products to request access to (optional for reauthentication) @@ -207,7 +207,7 @@ async def new( Create a new connect session for an employer Args: - minutes_to_expire: The number of minutes until the session expires (defaults to 20,160, which is 14 + minutes_to_expire: The number of minutes until the session expires (defaults to 43,200, which is 30 days) extra_headers: Send extra headers @@ -267,7 +267,7 @@ async def reauthenticate( Args: connection_id: The ID of the existing connection to reauthenticate - minutes_to_expire: The number of minutes until the session expires (defaults to 20,160, which is 14 + minutes_to_expire: The number of minutes until the session expires (defaults to 43,200, which is 30 days) products: The products to request access to (optional for reauthentication) diff --git a/src/finch/types/connect/session_new_params.py b/src/finch/types/connect/session_new_params.py index f9dfef35..2eb43d86 100644 --- a/src/finch/types/connect/session_new_params.py +++ b/src/finch/types/connect/session_new_params.py @@ -25,7 +25,7 @@ class SessionNewParams(TypedDict, total=False): minutes_to_expire: Optional[float] """ - The number of minutes until the session expires (defaults to 20,160, which is 14 + The number of minutes until the session expires (defaults to 43,200, which is 30 days) """ diff --git a/src/finch/types/connect/session_reauthenticate_params.py b/src/finch/types/connect/session_reauthenticate_params.py index 2738eb7a..3a1c38b2 100644 --- a/src/finch/types/connect/session_reauthenticate_params.py +++ b/src/finch/types/connect/session_reauthenticate_params.py @@ -14,7 +14,7 @@ class SessionReauthenticateParams(TypedDict, total=False): minutes_to_expire: Optional[int] """ - The number of minutes until the session expires (defaults to 20,160, which is 14 + The number of minutes until the session expires (defaults to 43,200, which is 30 days) """