Skip to content

Commit 18f3ca6

Browse files
release: 1.46.0 (#693)
* codegen metadata * feat(api): manual updates fix type mapping for go sdks * release: 1.46.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 18957e0 commit 18f3ca6

9 files changed

Lines changed: 20 additions & 12 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.45.0"
2+
".": "1.46.0"
33
}

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 48
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch/finch-a96dc8196c4f038d042fab2c73851166fcf491ec6a7e9bc76cae4661a8635afb.yml
3-
openapi_spec_hash: 8f65946452f62662cc72ce8cb2f88b76
4-
config_hash: 812b56df3e506bc2af056b2898327b8a
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch/finch-7e39b6a20bf3e1f23ad832300b73ae92b6f6ce7c9d86eaa8fcc0710b51455f17.yml
3+
openapi_spec_hash: 5e0e04e7274494062ff46ac85d358f5b
4+
config_hash: 8b3c2a32014346513c18d98cbb752d2c

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.46.0 (2026-06-22)
4+
5+
Full Changelog: [v1.45.0...v1.46.0](https://github.com/Finch-API/finch-api-python/compare/v1.45.0...v1.46.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([07e5096](https://github.com/Finch-API/finch-api-python/commit/07e5096d5de07067ccaf6e714c00e38acca319ec))
10+
311
## 1.45.0 (2026-06-17)
412

513
Full Changelog: [v1.44.1...v1.45.0](https://github.com/Finch-API/finch-api-python/compare/v1.44.1...v1.45.0)

api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ Types:
130130
```python
131131
from finch.types.hris import (
132132
PayStatement,
133+
PayStatementData,
133134
PayStatementDataSyncInProgress,
134135
PayStatementResponse,
135-
PayStatementResponseBody,
136136
)
137137
```
138138

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "finch-api"
3-
version = "1.45.0"
3+
version = "1.46.0"
44
description = "The official Python library for the Finch API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/finch/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "finch"
4-
__version__ = "1.45.0" # x-release-please-version
4+
__version__ = "1.46.0" # x-release-please-version

src/finch/types/hris/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
from .benefit_frequency import BenefitFrequency as BenefitFrequency
1616
from .document_response import DocumentResponse as DocumentResponse
1717
from .supported_benefit import SupportedBenefit as SupportedBenefit
18+
from .pay_statement_data import PayStatementData as PayStatementData
1819
from .benefit_list_params import BenefitListParams as BenefitListParams
1920
from .individual_response import IndividualResponse as IndividualResponse
2021
from .payment_list_params import PaymentListParams as PaymentListParams
@@ -32,7 +33,6 @@
3233
from .employment_data_response import EmploymentDataResponse as EmploymentDataResponse
3334
from .support_per_benefit_type import SupportPerBenefitType as SupportPerBenefitType
3435
from .document_retreive_response import DocumentRetreiveResponse as DocumentRetreiveResponse
35-
from .pay_statement_response_body import PayStatementResponseBody as PayStatementResponseBody
3636
from .benefit_features_and_operations import BenefitFeaturesAndOperations as BenefitFeaturesAndOperations
3737
from .employment_retrieve_many_params import EmploymentRetrieveManyParams as EmploymentRetrieveManyParams
3838
from .individual_retrieve_many_params import IndividualRetrieveManyParams as IndividualRetrieveManyParams

src/finch/types/hris/pay_statement_response_body.py renamed to src/finch/types/hris/pay_statement_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from ..._models import BaseModel
66
from .pay_statement import PayStatement
77

8-
__all__ = ["PayStatementResponseBody", "Paging"]
8+
__all__ = ["PayStatementData", "Paging"]
99

1010

1111
class Paging(BaseModel):
@@ -16,7 +16,7 @@ class Paging(BaseModel):
1616
"""The total number of elements for the entire query (not just the given page)"""
1717

1818

19-
class PayStatementResponseBody(BaseModel):
19+
class PayStatementData(BaseModel):
2020
paging: Paging
2121

2222
pay_statements: List[PayStatement]

src/finch/types/hris/pay_statement_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing_extensions import TypeAlias
55

66
from ..._models import BaseModel
7-
from .pay_statement_response_body import PayStatementResponseBody
7+
from .pay_statement_data import PayStatementData
88
from .pay_statement_data_sync_in_progress import PayStatementDataSyncInProgress
99

1010
__all__ = ["PayStatementResponse", "Body", "BodyBatchError"]
@@ -20,7 +20,7 @@ class BodyBatchError(BaseModel):
2020
finch_code: Optional[str] = None
2121

2222

23-
Body: TypeAlias = Union[PayStatementResponseBody, BodyBatchError, PayStatementDataSyncInProgress]
23+
Body: TypeAlias = Union[PayStatementData, BodyBatchError, PayStatementDataSyncInProgress]
2424

2525

2626
class PayStatementResponse(BaseModel):

0 commit comments

Comments
 (0)