diff --git a/.stats.yml b/.stats.yml index 72c3e9f8..3af4b464 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 35 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-a14d8915465614a275f05ccb91513576fab0525b488cb878dbe3d692f5b2349f.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-f3cab810772df12f57fc7a4a7e27e4fa6fb4a8022fd52178b5116b4089f0544b.yml diff --git a/src/finch/types/hris/employment_data.py b/src/finch/types/hris/employment_data.py index 57a19763..6c9a161d 100644 --- a/src/finch/types/hris/employment_data.py +++ b/src/finch/types/hris/employment_data.py @@ -78,6 +78,8 @@ class EmploymentData(BaseModel): last_name: Optional[str] = None """The legal last name of the individual.""" + latest_rehire_date: Optional[str] = None + location: Optional[Location] = None manager: Optional[Manager] = None diff --git a/src/finch/types/provider.py b/src/finch/types/provider.py index 58c62d3a..9967cd34 100644 --- a/src/finch/types/provider.py +++ b/src/finch/types/provider.py @@ -413,6 +413,9 @@ class Provider(BaseModel): authentication_methods: Optional[List[AuthenticationMethod]] = None """The list of authentication methods supported by the provider.""" + beta: Optional[bool] = None + """`true` if the integration is in a beta state, `false` otherwise""" + display_name: Optional[str] = None """The display name of the payroll provider.""" diff --git a/tests/api_resources/test_access_tokens.py b/tests/api_resources/test_access_tokens.py index 3dcbe2e3..92c16f0e 100644 --- a/tests/api_resources/test_access_tokens.py +++ b/tests/api_resources/test_access_tokens.py @@ -28,7 +28,7 @@ def test_method_create(self, client: Finch) -> None: def test_method_create_with_all_params(self, client: Finch) -> None: access_token = client.access_tokens.create( code="", - client_id="", + client_id="12345678-1234-1234-1234-123456789ABC", client_secret="", redirect_uri="https://example.com", ) @@ -73,7 +73,7 @@ async def test_method_create(self, async_client: AsyncFinch) -> None: async def test_method_create_with_all_params(self, async_client: AsyncFinch) -> None: access_token = await async_client.access_tokens.create( code="", - client_id="", + client_id="12345678-1234-1234-1234-123456789ABC", client_secret="", redirect_uri="https://example.com", )