Skip to content

Commit c63ea64

Browse files
Stainless Botstainless-app[bot]
authored andcommitted
fix: rename pay groups endpoint (#229)
1 parent 3bd4552 commit c63ea64

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 36
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-f1001da4ad3c1503330eebc1e61319a1a5db5e2da9fec98bc8682cb0967894d2.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-4e739f38d47eaea407bcc974cd10c25aad8062a965ebb37dd37014135744cbb9.yml

finch-java-core/src/main/kotlin/com/tryfinch/api/services/async/payroll/PayGroupServiceAsyncImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ constructor(
3737
val request =
3838
HttpRequest.builder()
3939
.method(HttpMethod.GET)
40-
.addPathSegments("employer", "pay-group", params.getPathParam(0))
40+
.addPathSegments("employer", "pay-groups", params.getPathParam(0))
4141
.putAllQueryParams(params.getQueryParams())
4242
.putAllHeaders(clientOptions.headers)
4343
.putAllHeaders(params.getHeaders())

finch-java-core/src/main/kotlin/com/tryfinch/api/services/blocking/payroll/PayGroupServiceImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ constructor(
3636
val request =
3737
HttpRequest.builder()
3838
.method(HttpMethod.GET)
39-
.addPathSegments("employer", "pay-group", params.getPathParam(0))
39+
.addPathSegments("employer", "pay-groups", params.getPathParam(0))
4040
.putAllQueryParams(params.getQueryParams())
4141
.putAllHeaders(clientOptions.headers)
4242
.putAllHeaders(params.getHeaders())

0 commit comments

Comments
 (0)