Skip to content

Commit ad3d78f

Browse files
feat(api): api update
1 parent ec2fe8b commit ad3d78f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 45
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-944a0f9d35f3b8ec2ba62fa12e551cf89f0b845f8ed1e3c7f67a9fb80b32d96f.yml
3-
openapi_spec_hash: 37c849e7b5dd941c011385b49467e077
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-4fcae6958da081ca0e96ef6b3ce8f0b6e50994faaed8ecd6e94aa40ce1a93521.yml
3+
openapi_spec_hash: a825b1120bb26f04505e3bc9ab1e48f3
44
config_hash: 53778a0b839c4f6ad34fbba051f5e8a6

finch-java-core/src/main/kotlin/com/tryfinch/api/models/ConnectSessionNewParams.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private constructor(
6868
fun manual(): Optional<Boolean> = body.manual()
6969

7070
/**
71-
* The number of minutes until the session expires (defaults to 43,200, which is 30 days)
71+
* The number of minutes until the session expires (defaults to 129,600, which is 90 days)
7272
*
7373
* @throws FinchInvalidDataException if the JSON field has an unexpected type (e.g. if the
7474
* server responded with an unexpected value).
@@ -297,7 +297,7 @@ private constructor(
297297
fun manual(manual: JsonField<Boolean>) = apply { body.manual(manual) }
298298

299299
/**
300-
* The number of minutes until the session expires (defaults to 43,200, which is 30 days)
300+
* The number of minutes until the session expires (defaults to 129,600, which is 90 days)
301301
*/
302302
fun minutesToExpire(minutesToExpire: Double?) = apply {
303303
body.minutesToExpire(minutesToExpire)
@@ -586,7 +586,7 @@ private constructor(
586586
fun manual(): Optional<Boolean> = manual.getOptional("manual")
587587

588588
/**
589-
* The number of minutes until the session expires (defaults to 43,200, which is 30 days)
589+
* The number of minutes until the session expires (defaults to 129,600, which is 90 days)
590590
*
591591
* @throws FinchInvalidDataException if the JSON field has an unexpected type (e.g. if the
592592
* server responded with an unexpected value).
@@ -847,7 +847,7 @@ private constructor(
847847
fun manual(manual: JsonField<Boolean>) = apply { this.manual = manual }
848848

849849
/**
850-
* The number of minutes until the session expires (defaults to 43,200, which is 30
850+
* The number of minutes until the session expires (defaults to 129,600, which is 90
851851
* days)
852852
*/
853853
fun minutesToExpire(minutesToExpire: Double?) =

0 commit comments

Comments
 (0)