Skip to content

Commit 1568147

Browse files
feat(api): api update (#582)
1 parent 29f6aff commit 1568147

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 41
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-0ff5b707b4e3afcf4020e2d4b71bb4d4cfb25eac2828d6de5bee8d4d5d81550d.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-9c0b41ca8713a9440c624b0d08de0e6cbd9486978188afab2286ae67d8a97817.yml

src/finch/resources/connect/sessions.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def new(
6969
Create a new connect session for an employer
7070
7171
Args:
72-
minutes_to_expire: The number of minutes until the session expires (defaults to 20,160, which is 14
72+
minutes_to_expire: The number of minutes until the session expires (defaults to 43,200, which is 30
7373
days)
7474
7575
extra_headers: Send extra headers
@@ -129,7 +129,7 @@ def reauthenticate(
129129
Args:
130130
connection_id: The ID of the existing connection to reauthenticate
131131
132-
minutes_to_expire: The number of minutes until the session expires (defaults to 20,160, which is 14
132+
minutes_to_expire: The number of minutes until the session expires (defaults to 43,200, which is 30
133133
days)
134134
135135
products: The products to request access to (optional for reauthentication)
@@ -207,7 +207,7 @@ async def new(
207207
Create a new connect session for an employer
208208
209209
Args:
210-
minutes_to_expire: The number of minutes until the session expires (defaults to 20,160, which is 14
210+
minutes_to_expire: The number of minutes until the session expires (defaults to 43,200, which is 30
211211
days)
212212
213213
extra_headers: Send extra headers
@@ -267,7 +267,7 @@ async def reauthenticate(
267267
Args:
268268
connection_id: The ID of the existing connection to reauthenticate
269269
270-
minutes_to_expire: The number of minutes until the session expires (defaults to 20,160, which is 14
270+
minutes_to_expire: The number of minutes until the session expires (defaults to 43,200, which is 30
271271
days)
272272
273273
products: The products to request access to (optional for reauthentication)

src/finch/types/connect/session_new_params.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class SessionNewParams(TypedDict, total=False):
2525

2626
minutes_to_expire: Optional[float]
2727
"""
28-
The number of minutes until the session expires (defaults to 20,160, which is 14
28+
The number of minutes until the session expires (defaults to 43,200, which is 30
2929
days)
3030
"""
3131

src/finch/types/connect/session_reauthenticate_params.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class SessionReauthenticateParams(TypedDict, total=False):
1414

1515
minutes_to_expire: Optional[int]
1616
"""
17-
The number of minutes until the session expires (defaults to 20,160, which is 14
17+
The number of minutes until the session expires (defaults to 43,200, which is 30
1818
days)
1919
"""
2020

0 commit comments

Comments
 (0)