Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.45.0"
".": "1.46.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 48
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch/finch-a96dc8196c4f038d042fab2c73851166fcf491ec6a7e9bc76cae4661a8635afb.yml
openapi_spec_hash: 8f65946452f62662cc72ce8cb2f88b76
config_hash: 812b56df3e506bc2af056b2898327b8a
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch/finch-7e39b6a20bf3e1f23ad832300b73ae92b6f6ce7c9d86eaa8fcc0710b51455f17.yml
openapi_spec_hash: 5e0e04e7274494062ff46ac85d358f5b
config_hash: 8b3c2a32014346513c18d98cbb752d2c
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.46.0 (2026-06-22)

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

### Features

* **api:** manual updates ([07e5096](https://github.com/Finch-API/finch-api-python/commit/07e5096d5de07067ccaf6e714c00e38acca319ec))

## 1.45.0 (2026-06-17)

Full Changelog: [v1.44.1...v1.45.0](https://github.com/Finch-API/finch-api-python/compare/v1.44.1...v1.45.0)
Expand Down
2 changes: 1 addition & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ Types:
```python
from finch.types.hris import (
PayStatement,
PayStatementData,
PayStatementDataSyncInProgress,
PayStatementResponse,
PayStatementResponseBody,
)
```

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "finch-api"
version = "1.45.0"
version = "1.46.0"
description = "The official Python library for the Finch API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/finch/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "finch"
__version__ = "1.45.0" # x-release-please-version
__version__ = "1.46.0" # x-release-please-version
2 changes: 1 addition & 1 deletion src/finch/types/hris/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from .benefit_frequency import BenefitFrequency as BenefitFrequency
from .document_response import DocumentResponse as DocumentResponse
from .supported_benefit import SupportedBenefit as SupportedBenefit
from .pay_statement_data import PayStatementData as PayStatementData
from .benefit_list_params import BenefitListParams as BenefitListParams
from .individual_response import IndividualResponse as IndividualResponse
from .payment_list_params import PaymentListParams as PaymentListParams
Expand All @@ -32,7 +33,6 @@
from .employment_data_response import EmploymentDataResponse as EmploymentDataResponse
from .support_per_benefit_type import SupportPerBenefitType as SupportPerBenefitType
from .document_retreive_response import DocumentRetreiveResponse as DocumentRetreiveResponse
from .pay_statement_response_body import PayStatementResponseBody as PayStatementResponseBody
from .benefit_features_and_operations import BenefitFeaturesAndOperations as BenefitFeaturesAndOperations
from .employment_retrieve_many_params import EmploymentRetrieveManyParams as EmploymentRetrieveManyParams
from .individual_retrieve_many_params import IndividualRetrieveManyParams as IndividualRetrieveManyParams
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from ..._models import BaseModel
from .pay_statement import PayStatement

__all__ = ["PayStatementResponseBody", "Paging"]
__all__ = ["PayStatementData", "Paging"]


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


class PayStatementResponseBody(BaseModel):
class PayStatementData(BaseModel):
paging: Paging

pay_statements: List[PayStatement]
4 changes: 2 additions & 2 deletions src/finch/types/hris/pay_statement_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing_extensions import TypeAlias

from ..._models import BaseModel
from .pay_statement_response_body import PayStatementResponseBody
from .pay_statement_data import PayStatementData
from .pay_statement_data_sync_in_progress import PayStatementDataSyncInProgress

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


Body: TypeAlias = Union[PayStatementResponseBody, BodyBatchError, PayStatementDataSyncInProgress]
Body: TypeAlias = Union[PayStatementData, BodyBatchError, PayStatementDataSyncInProgress]


class PayStatementResponse(BaseModel):
Expand Down