finch-api 1.2.2__tar.gz → 1.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- finch_api-1.4.0/.release-please-manifest.json +3 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/CHANGELOG.md +16 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/PKG-INFO +1 -1
- {finch_api-1.2.2 → finch_api-1.4.0}/pyproject.toml +1 -1
- {finch_api-1.2.2 → finch_api-1.4.0}/release-please-config.json +10 -3
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_version.py +1 -1
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/connections/accounts.py +4 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/connections/connections.py +4 -0
- finch_api-1.4.0/src/finch/types/base_webhook_event.py +26 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/create_access_token_response.py +13 -3
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/introspection.py +31 -5
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/connection_create_params.py +1 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/connection_create_response.py +6 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/connections/account_create_params.py +1 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/connections/account_create_response.py +6 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/connections/account_update_response.py +7 -1
- finch_api-1.2.2/.release-please-manifest.json +0 -3
- finch_api-1.2.2/src/finch/types/base_webhook_event.py +0 -15
- {finch_api-1.2.2 → finch_api-1.4.0}/.gitignore +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/CONTRIBUTING.md +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/LICENSE +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/README.md +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/SECURITY.md +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/api.md +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/bin/check-release-environment +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/bin/publish-pypi +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/examples/.keep +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/mypy.ini +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/noxfile.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/requirements-dev.lock +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/requirements.lock +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_base_client.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_client.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_compat.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_constants.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_exceptions.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_files.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_legacy_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_models.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_qs.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_resource.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_streaming.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_types.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_utils/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_utils/_logs.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_utils/_proxy.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_utils/_reflection.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_utils/_streams.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_utils/_sync.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_utils/_transform.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_utils/_typing.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/_utils/_utils.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/lib/.keep +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/pagination.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/py.typed +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/access_tokens.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/account.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/hris/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/hris/benefits/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/hris/benefits/benefits.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/hris/benefits/individuals.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/hris/company.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/hris/directory.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/hris/employments.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/hris/hris.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/hris/individuals.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/hris/pay_statements.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/hris/payments.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/jobs/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/jobs/automated.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/jobs/jobs.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/jobs/manual.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/payroll/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/payroll/pay_groups.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/payroll/payroll.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/providers.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/request_forwarding.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/company.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/connections/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/directory.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/employment.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/individual.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/jobs/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/jobs/configuration.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/jobs/jobs.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/payment.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/sandbox/sandbox.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/resources/webhooks.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/access_token_create_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/account_update_event.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/company_event.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/directory_event.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/disconnect_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/employment_event.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefit_contribution.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefit_create_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefit_features_and_operations.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefit_frequency.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefit_type.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefit_update_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefits/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefits/enrolled_individual.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefits/individual_benefit.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefits/individual_enroll_many_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefits/individual_enrolled_ids_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefits/individual_retrieve_many_benefits_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefits/individual_unenroll_many_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefits/unenrolled_individual.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefits_support.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benfit_contribution.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/company.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/company_benefit.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/create_company_benefits_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/directory_list_individuals_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/directory_list_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/employment_data.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/employment_data_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/employment_retrieve_many_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/individual.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/individual_in_directory.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/individual_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/individual_retrieve_many_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/pay_statement.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/pay_statement_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/pay_statement_response_body.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/pay_statement_retrieve_many_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/payment.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/payment_list_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/support_per_benefit_type.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/supported_benefit.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/update_company_benefit_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/income.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/income_param.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/individual_event.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/job_completion_event.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/jobs/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/jobs/automated_async_job.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/jobs/automated_create_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/jobs/automated_create_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/jobs/automated_list_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/jobs/manual_async_job.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/location.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/location_param.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/money.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/money_param.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/pay_statement_event.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/payment_event.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/payroll/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/payroll/pay_group_list_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/payroll/pay_group_list_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/payroll/pay_group_retrieve_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/provider.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/request_forwarding_forward_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/request_forwarding_forward_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/company_update_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/company_update_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/connections/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/connections/account_update_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/directory_create_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/directory_create_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/employment_update_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/employment_update_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/individual_update_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/individual_update_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/job_create_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/job_create_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/jobs/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/jobs/configuration_retrieve_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/jobs/configuration_update_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/jobs/sandbox_job_configuration.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/payment_create_params.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/payment_create_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/shared/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/shared/connection_status_type.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/shared/operation_support.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/shared/operation_support_matrix.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/shared/paging.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/shared_params/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/shared_params/connection_status_type.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/webhook_event.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/hris/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/hris/benefits/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/hris/benefits/test_individuals.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/hris/test_benefits.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/hris/test_company.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/hris/test_directory.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/hris/test_employments.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/hris/test_individuals.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/hris/test_pay_statements.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/hris/test_payments.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/jobs/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/jobs/test_automated.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/jobs/test_manual.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/payroll/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/payroll/test_pay_groups.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/connections/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/connections/test_accounts.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/jobs/__init__.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/jobs/test_configuration.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/test_company.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/test_connections.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/test_directory.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/test_employment.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/test_individual.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/test_jobs.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/sandbox/test_payment.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/test_access_tokens.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/test_account.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/test_providers.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/test_request_forwarding.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/test_top_level.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/api_resources/test_webhooks.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/conftest.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/sample_file.txt +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_client.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_deepcopy.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_extract_files.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_files.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_legacy_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_models.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_qs.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_required_args.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_response.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_streaming.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_transform.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_utils/test_proxy.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/test_utils/test_typing.py +0 -0
- {finch_api-1.2.2 → finch_api-1.4.0}/tests/utils.py +0 -0
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.4.0 (2024-08-30)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.3.0...v1.4.0](https://github.com/Finch-API/finch-api-python/compare/v1.3.0...v1.4.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** OpenAPI spec update via Stainless API ([#487](https://github.com/Finch-API/finch-api-python/issues/487)) ([7c454f8](https://github.com/Finch-API/finch-api-python/commit/7c454f82cd9dda072cea9c8e350cf23318d68e8e))
|
|
10
|
+
|
|
11
|
+
## 1.3.0 (2024-08-28)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.2.2...v1.3.0](https://github.com/Finch-API/finch-api-python/compare/v1.2.2...v1.3.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* chore: update reviewers for new teams ([#484](https://github.com/Finch-API/finch-api-python/issues/484)) ([b0d78df](https://github.com/Finch-API/finch-api-python/commit/b0d78df47b3b5455ee7e4f84616dde2f13414167))
|
|
18
|
+
|
|
3
19
|
## 1.2.2 (2024-08-20)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.2.1...v1.2.2](https://github.com/Finch-API/finch-api-python/compare/v1.2.1...v1.2.2)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: finch-api
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4.0
|
|
4
4
|
Summary: The official Python library for the Finch API
|
|
5
5
|
Project-URL: Homepage, https://github.com/Finch-API/finch-api-python
|
|
6
6
|
Project-URL: Repository, https://github.com/Finch-API/finch-api-python
|
|
@@ -60,12 +60,19 @@
|
|
|
60
60
|
}
|
|
61
61
|
],
|
|
62
62
|
"reviewers": [
|
|
63
|
+
"araujodavid",
|
|
64
|
+
"NandoSangenetto",
|
|
65
|
+
"delainerogers",
|
|
66
|
+
"ericpsimon",
|
|
63
67
|
"jordanbrauer",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
68
|
+
"vitorfreitas",
|
|
69
|
+
"miguel-finch",
|
|
70
|
+
"edkim-finch",
|
|
71
|
+
"bteodosioFinch",
|
|
72
|
+
"ashar-finch"
|
|
66
73
|
],
|
|
67
74
|
"release-type": "python",
|
|
68
75
|
"extra-files": [
|
|
69
76
|
"src/finch/_version.py"
|
|
70
77
|
]
|
|
71
|
-
}
|
|
78
|
+
}
|
|
@@ -52,6 +52,8 @@ class Accounts(SyncAPIResource):
|
|
|
52
52
|
Create a new account for an existing connection (company/provider pair)
|
|
53
53
|
|
|
54
54
|
Args:
|
|
55
|
+
provider_id: The provider associated with the `access_token`
|
|
56
|
+
|
|
55
57
|
products: Optional, defaults to Organization products (`company`, `directory`,
|
|
56
58
|
`employment`, `individual`)
|
|
57
59
|
|
|
@@ -142,6 +144,8 @@ class AsyncAccounts(AsyncAPIResource):
|
|
|
142
144
|
Create a new account for an existing connection (company/provider pair)
|
|
143
145
|
|
|
144
146
|
Args:
|
|
147
|
+
provider_id: The provider associated with the `access_token`
|
|
148
|
+
|
|
145
149
|
products: Optional, defaults to Organization products (`company`, `directory`,
|
|
146
150
|
`employment`, `individual`)
|
|
147
151
|
|
|
@@ -62,6 +62,8 @@ class Connections(SyncAPIResource):
|
|
|
62
62
|
Create a new connection (new company/provider pair) with a new account
|
|
63
63
|
|
|
64
64
|
Args:
|
|
65
|
+
provider_id: The provider associated with the connection
|
|
66
|
+
|
|
65
67
|
employee_size: Optional: the size of the employer to be created with this connection. Defaults
|
|
66
68
|
to 20. Note that if this is higher than 100, historical payroll data will not be
|
|
67
69
|
generated, and instead only one pay period will be created.
|
|
@@ -123,6 +125,8 @@ class AsyncConnections(AsyncAPIResource):
|
|
|
123
125
|
Create a new connection (new company/provider pair) with a new account
|
|
124
126
|
|
|
125
127
|
Args:
|
|
128
|
+
provider_id: The provider associated with the connection
|
|
129
|
+
|
|
126
130
|
employee_size: Optional: the size of the employer to be created with this connection. Defaults
|
|
127
131
|
to 20. Note that if this is higher than 100, historical payroll data will not be
|
|
128
132
|
generated, and instead only one pay period will be created.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
|
|
5
|
+
from .._models import BaseModel
|
|
6
|
+
|
|
7
|
+
__all__ = ["BaseWebhookEvent"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class BaseWebhookEvent(BaseModel):
|
|
11
|
+
account_id: str
|
|
12
|
+
"""
|
|
13
|
+
[DEPRECATED] Unique Finch ID of the employer account used to make this
|
|
14
|
+
connection. Use `connection_id` instead to identify the connection associated
|
|
15
|
+
with this event.
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
company_id: str
|
|
19
|
+
"""[DEPRECATED] Unique Finch ID of the company for which data has been updated.
|
|
20
|
+
|
|
21
|
+
Use `connection_id` instead to identify the connection associated with this
|
|
22
|
+
event.
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
connection_id: Optional[str] = None
|
|
26
|
+
"""Unique Finch ID of the connection associated with the webhook event."""
|
|
@@ -10,15 +10,25 @@ __all__ = ["CreateAccessTokenResponse"]
|
|
|
10
10
|
|
|
11
11
|
class CreateAccessTokenResponse(BaseModel):
|
|
12
12
|
access_token: str
|
|
13
|
+
"""The access token for the connection."""
|
|
13
14
|
|
|
14
15
|
account_id: str
|
|
15
|
-
"""
|
|
16
|
+
"""
|
|
17
|
+
[DEPRECATED] Use `connection_id` to identify the connection instead of this
|
|
18
|
+
account ID.
|
|
19
|
+
"""
|
|
16
20
|
|
|
17
21
|
client_type: Literal["production", "development", "sandbox"]
|
|
18
22
|
"""The type of application associated with a token."""
|
|
19
23
|
|
|
20
24
|
company_id: str
|
|
21
|
-
"""
|
|
25
|
+
"""
|
|
26
|
+
[DEPRECATED] Use `connection_id` to identify the connection instead of this
|
|
27
|
+
company ID.
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
connection_id: str
|
|
31
|
+
"""The Finch UUID of the connection associated with the `access_token`."""
|
|
22
32
|
|
|
23
33
|
connection_type: Literal["provider", "finch"]
|
|
24
34
|
"""The type of the connection associated with the token.
|
|
@@ -31,4 +41,4 @@ class CreateAccessTokenResponse(BaseModel):
|
|
|
31
41
|
"""An array of the authorized products associated with the `access_token`."""
|
|
32
42
|
|
|
33
43
|
provider_id: str
|
|
34
|
-
"""The
|
|
44
|
+
"""The ID of the provider associated with the `access_token`."""
|
|
@@ -6,7 +6,7 @@ from typing_extensions import Literal
|
|
|
6
6
|
from .._models import BaseModel
|
|
7
7
|
from .shared.connection_status_type import ConnectionStatusType
|
|
8
8
|
|
|
9
|
-
__all__ = ["Introspection", "AuthenticationMethod", "AuthenticationMethodConnectionStatus"]
|
|
9
|
+
__all__ = ["Introspection", "AuthenticationMethod", "AuthenticationMethodConnectionStatus", "ConnectionStatus"]
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class AuthenticationMethodConnectionStatus(BaseModel):
|
|
@@ -18,24 +18,44 @@ class AuthenticationMethodConnectionStatus(BaseModel):
|
|
|
18
18
|
class AuthenticationMethod(BaseModel):
|
|
19
19
|
connection_status: Optional[AuthenticationMethodConnectionStatus] = None
|
|
20
20
|
|
|
21
|
+
products: Optional[List[str]] = None
|
|
22
|
+
"""An array of the authorized products associated with the `access_token`."""
|
|
23
|
+
|
|
21
24
|
type: Optional[Literal["assisted", "credential", "api_token", "api_credential", "oauth"]] = None
|
|
22
25
|
"""The type of authentication method."""
|
|
23
26
|
|
|
24
27
|
|
|
28
|
+
class ConnectionStatus(BaseModel):
|
|
29
|
+
message: Optional[str] = None
|
|
30
|
+
|
|
31
|
+
status: Optional[ConnectionStatusType] = None
|
|
32
|
+
|
|
33
|
+
|
|
25
34
|
class Introspection(BaseModel):
|
|
26
35
|
account_id: str
|
|
27
|
-
"""
|
|
36
|
+
"""
|
|
37
|
+
[DEPRECATED] Use `connection_id` to associate tokens with a Finch connection
|
|
38
|
+
instead of this account ID.
|
|
39
|
+
"""
|
|
28
40
|
|
|
29
41
|
authentication_methods: List[AuthenticationMethod]
|
|
30
42
|
|
|
31
43
|
client_id: str
|
|
32
|
-
"""The client
|
|
44
|
+
"""The client ID of the application associated with the `access_token`."""
|
|
33
45
|
|
|
34
46
|
client_type: Literal["production", "development", "sandbox"]
|
|
35
47
|
"""The type of application associated with a token."""
|
|
36
48
|
|
|
37
49
|
company_id: str
|
|
38
|
-
"""
|
|
50
|
+
"""
|
|
51
|
+
[DEPRECATED] Use `connection_id` to associate tokens with a Finch connection
|
|
52
|
+
instead of this company ID.
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
connection_id: str
|
|
56
|
+
"""The Finch UUID of the connection associated with the `access_token`."""
|
|
57
|
+
|
|
58
|
+
connection_status: ConnectionStatus
|
|
39
59
|
|
|
40
60
|
connection_type: Literal["provider", "finch"]
|
|
41
61
|
"""The type of the connection associated with the token.
|
|
@@ -52,10 +72,16 @@ class Introspection(BaseModel):
|
|
|
52
72
|
"""
|
|
53
73
|
|
|
54
74
|
payroll_provider_id: str
|
|
55
|
-
"""
|
|
75
|
+
"""
|
|
76
|
+
[DEPRECATED] Use `provider_id` to identify the provider instead of this payroll
|
|
77
|
+
provider ID.
|
|
78
|
+
"""
|
|
56
79
|
|
|
57
80
|
products: List[str]
|
|
58
81
|
"""An array of the authorized products associated with the `access_token`."""
|
|
59
82
|
|
|
83
|
+
provider_id: str
|
|
84
|
+
"""The ID of the provider associated with the `access_token`."""
|
|
85
|
+
|
|
60
86
|
username: str
|
|
61
87
|
"""The account username used for login associated with the `access_token`."""
|
|
@@ -10,6 +10,7 @@ __all__ = ["ConnectionCreateParams"]
|
|
|
10
10
|
|
|
11
11
|
class ConnectionCreateParams(TypedDict, total=False):
|
|
12
12
|
provider_id: Required[str]
|
|
13
|
+
"""The provider associated with the connection"""
|
|
13
14
|
|
|
14
15
|
authentication_type: Literal["credential", "api_token", "oauth", "assisted"]
|
|
15
16
|
|
|
@@ -12,11 +12,17 @@ class ConnectionCreateResponse(BaseModel):
|
|
|
12
12
|
access_token: str
|
|
13
13
|
|
|
14
14
|
account_id: str
|
|
15
|
+
"""[DEPRECATED] Use `connection_id` to associate a connection with an access token"""
|
|
15
16
|
|
|
16
17
|
authentication_type: Literal["credential", "api_token", "oauth", "assisted"]
|
|
17
18
|
|
|
18
19
|
company_id: str
|
|
20
|
+
"""[DEPRECATED] Use `connection_id` to associate a connection with an access token"""
|
|
21
|
+
|
|
22
|
+
connection_id: str
|
|
23
|
+
"""The ID of the new connection"""
|
|
19
24
|
|
|
20
25
|
products: List[str]
|
|
21
26
|
|
|
22
27
|
provider_id: str
|
|
28
|
+
"""The ID of the provider associated with the `access_token`."""
|
{finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/connections/account_create_response.py
RENAMED
|
@@ -12,11 +12,17 @@ class AccountCreateResponse(BaseModel):
|
|
|
12
12
|
access_token: str
|
|
13
13
|
|
|
14
14
|
account_id: str
|
|
15
|
+
"""[DEPRECATED] Use `connection_id` to associate a connection with an access token"""
|
|
15
16
|
|
|
16
17
|
authentication_type: Literal["credential", "api_token", "oauth", "assisted"]
|
|
17
18
|
|
|
18
19
|
company_id: str
|
|
20
|
+
"""[DEPRECATED] Use `connection_id` to associate a connection with an access token"""
|
|
21
|
+
|
|
22
|
+
connection_id: str
|
|
23
|
+
"""The ID of the new connection"""
|
|
19
24
|
|
|
20
25
|
products: List[str]
|
|
21
26
|
|
|
22
27
|
provider_id: str
|
|
28
|
+
"""The ID of the provider associated with the `access_token`"""
|
{finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/sandbox/connections/account_update_response.py
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
from typing import List
|
|
3
|
+
from typing import List, Optional
|
|
4
4
|
from typing_extensions import Literal
|
|
5
5
|
|
|
6
6
|
from ...._models import BaseModel
|
|
@@ -10,11 +10,17 @@ __all__ = ["AccountUpdateResponse"]
|
|
|
10
10
|
|
|
11
11
|
class AccountUpdateResponse(BaseModel):
|
|
12
12
|
account_id: str
|
|
13
|
+
"""[DEPRECATED] Use `connection_id` to associate a connection with an access token"""
|
|
13
14
|
|
|
14
15
|
authentication_type: Literal["credential", "api_token", "oauth", "assisted"]
|
|
15
16
|
|
|
16
17
|
company_id: str
|
|
18
|
+
"""[DEPRECATED] Use `connection_id` to associate a connection with an access token"""
|
|
17
19
|
|
|
18
20
|
products: List[str]
|
|
19
21
|
|
|
20
22
|
provider_id: str
|
|
23
|
+
"""The ID of the provider associated with the `access_token`"""
|
|
24
|
+
|
|
25
|
+
connection_id: Optional[str] = None
|
|
26
|
+
"""The ID of the new connection"""
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
from .._models import BaseModel
|
|
6
|
-
|
|
7
|
-
__all__ = ["BaseWebhookEvent"]
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class BaseWebhookEvent(BaseModel):
|
|
11
|
-
account_id: str
|
|
12
|
-
"""Unique Finch id of the employer account that was used to make this connection."""
|
|
13
|
-
|
|
14
|
-
company_id: str
|
|
15
|
-
"""Unique Finch id of the company for which data has been updated."""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefits/individual_enroll_many_params.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/benefits/individual_unenroll_many_params.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/create_company_benefits_response.py
RENAMED
|
File without changes
|
{finch_api-1.2.2 → finch_api-1.4.0}/src/finch/types/hris/directory_list_individuals_params.py
RENAMED
|
File without changes
|
|
File without changes
|