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 @@
{
".": "9.5.1"
".": "9.6.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 46
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-a1778dd040aadddb53b90df5959043d17a5c9899f82c9c7188cd0be810426dc3.yml
openapi_spec_hash: fe60fcf302d80a604a49ec1bf5068881
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-b7c6baf733d255185a9767935a4eaa54f36678b641606cfb74a3050b67c59e9b.yml
openapi_spec_hash: e36cb22b7a3340ee040f8479636bb878
config_hash: d21a244fc073152c8dbecb8ece970209
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 9.6.0 (2026-04-16)

Full Changelog: [v9.5.1...v9.6.0](https://github.com/Finch-API/finch-api-node/compare/v9.5.1...v9.6.0)

### Features

* **api:** api update ([bde8b1a](https://github.com/Finch-API/finch-api-node/commit/bde8b1ac83e0c8df9e97e4ddf674cd4bddc11025))

## 9.5.1 (2026-04-16)

Full Changelog: [v9.5.0...v9.5.1](https://github.com/Finch-API/finch-api-node/compare/v9.5.0...v9.5.1)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tryfinch/finch-api",
"version": "9.5.1",
"version": "9.6.0",
"description": "The official TypeScript library for the Finch API",
"author": "Finch <founders@tryfinch.com>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dxt_version": "0.2",
"name": "@tryfinch/finch-api-mcp",
"version": "9.5.1",
"version": "9.6.0",
"description": "The official MCP Server for the Finch API",
"author": {
"name": "Finch",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tryfinch/finch-api-mcp",
"version": "9.5.1",
"version": "9.6.0",
"description": "The official MCP Server for the Finch API",
"author": "Finch <founders@tryfinch.com>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const newMcpServer = async ({
new McpServer(
{
name: 'tryfinch_finch_api_api',
version: '9.5.1',
version: '9.6.0',
},
{
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),
Expand Down
5 changes: 4 additions & 1 deletion src/resources/webhooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,10 @@ export interface JobCompletionEvent extends BaseWebhookEvent {
| 'job.benefit_register.completed'
| 'job.benefit_unenroll.completed'
| 'job.benefit_update.completed'
| 'job.data_sync_all.completed';
| 'job.data_sync_all.completed'
| 'job.w4_form_employee_sync.completed'
| 'job.initial_data_sync_org.succeeded'
| 'job.initial_data_sync_payroll.succeeded';
}

export namespace JobCompletionEvent {
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '9.5.1'; // x-release-please-version
export const VERSION = '9.6.0'; // x-release-please-version
Loading