diff --git a/.stats.yml b/.stats.yml index 424dc58b..fc279b3c 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 41 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-f1779210fbedfc6099076412405288b489f727cbb0b3a85e7b7c12fabb37ef47.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-69819ddc6d03624ee8d880317fca03afab50a0a843218f1d9f14616e8a003dad.yml diff --git a/src/finch/resources/hris/documents.py b/src/finch/resources/hris/documents.py index 4413f816..6c60b2f8 100644 --- a/src/finch/resources/hris/documents.py +++ b/src/finch/resources/hris/documents.py @@ -60,8 +60,8 @@ def list( ) -> DocumentListResponse: """**Beta:** This endpoint is in beta and may change. - - Retrieve a list of company-wide documents. + Retrieve a list of + company-wide documents. Args: individual_ids: Comma-delimited list of stable Finch uuids for each individual. If empty, @@ -115,8 +115,8 @@ def retreive( ) -> DocumentRetreiveResponse: """**Beta:** This endpoint is in beta and may change. - - Retrieve details of a specific document by its ID. + Retrieve details of a + specific document by its ID. Args: extra_headers: Send extra headers @@ -179,8 +179,8 @@ async def list( ) -> DocumentListResponse: """**Beta:** This endpoint is in beta and may change. - - Retrieve a list of company-wide documents. + Retrieve a list of + company-wide documents. Args: individual_ids: Comma-delimited list of stable Finch uuids for each individual. If empty, @@ -234,8 +234,8 @@ async def retreive( ) -> DocumentRetreiveResponse: """**Beta:** This endpoint is in beta and may change. - - Retrieve details of a specific document by its ID. + Retrieve details of a + specific document by its ID. Args: extra_headers: Send extra headers diff --git a/tests/api_resources/sandbox/test_company.py b/tests/api_resources/sandbox/test_company.py index 3c89e1c6..aa0e957f 100644 --- a/tests/api_resources/sandbox/test_company.py +++ b/tests/api_resources/sandbox/test_company.py @@ -26,7 +26,7 @@ def test_method_update(self, client: Finch) -> None: entity={}, legal_name="legal_name", locations=[{}], - primary_email="primary_email", + primary_email="dev@stainless.com", primary_phone_number="primary_phone_number", ) assert_matches_type(CompanyUpdateResponse, company, path=["response"]) @@ -67,7 +67,7 @@ def test_method_update_with_all_params(self, client: Finch) -> None: "state": "state", } ], - primary_email="primary_email", + primary_email="dev@stainless.com", primary_phone_number="primary_phone_number", ) assert_matches_type(CompanyUpdateResponse, company, path=["response"]) @@ -81,7 +81,7 @@ def test_raw_response_update(self, client: Finch) -> None: entity={}, legal_name="legal_name", locations=[{}], - primary_email="primary_email", + primary_email="dev@stainless.com", primary_phone_number="primary_phone_number", ) @@ -99,7 +99,7 @@ def test_streaming_response_update(self, client: Finch) -> None: entity={}, legal_name="legal_name", locations=[{}], - primary_email="primary_email", + primary_email="dev@stainless.com", primary_phone_number="primary_phone_number", ) as response: assert not response.is_closed @@ -123,7 +123,7 @@ async def test_method_update(self, async_client: AsyncFinch) -> None: entity={}, legal_name="legal_name", locations=[{}], - primary_email="primary_email", + primary_email="dev@stainless.com", primary_phone_number="primary_phone_number", ) assert_matches_type(CompanyUpdateResponse, company, path=["response"]) @@ -164,7 +164,7 @@ async def test_method_update_with_all_params(self, async_client: AsyncFinch) -> "state": "state", } ], - primary_email="primary_email", + primary_email="dev@stainless.com", primary_phone_number="primary_phone_number", ) assert_matches_type(CompanyUpdateResponse, company, path=["response"]) @@ -178,7 +178,7 @@ async def test_raw_response_update(self, async_client: AsyncFinch) -> None: entity={}, legal_name="legal_name", locations=[{}], - primary_email="primary_email", + primary_email="dev@stainless.com", primary_phone_number="primary_phone_number", ) @@ -196,7 +196,7 @@ async def test_streaming_response_update(self, async_client: AsyncFinch) -> None entity={}, legal_name="legal_name", locations=[{}], - primary_email="primary_email", + primary_email="dev@stainless.com", primary_phone_number="primary_phone_number", ) as response: assert not response.is_closed