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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [8.4.0] - 2026-06-24

### Added
- Missing webhook trigger types (`message.deleted`, `message.created.cleaned`, `grant.imap_sync_completed`, Notetaker triggers, Agent Account and transactional deliverability triggers, and legacy tracking triggers)
- Add `nylas.transactionalSend.send()` for domain-based transactional email send (`POST /v3/domains/{domainName}/messages/send`) ([#747](https://github.com/nylas/nylas-nodejs/pull/747))
- Add optional `calendarId` and `eventId` fields to the `Notetaker` model ([#748](https://github.com/nylas/nylas-nodejs/pull/748))

### Fixed
- Add `message.created.truncated` and `message.updated.truncated` to `WebhookTriggers` ([#748](https://github.com/nylas/nylas-nodejs/pull/748))
- Add missing webhook trigger types (`message.deleted`, `message.created.cleaned`, `grant.imap_sync_completed`, Notetaker triggers, Agent Account and transactional deliverability triggers, and legacy tracking triggers) ([#750](https://github.com/nylas/nylas-nodejs/pull/750))

### Changed
- Bump dependencies to reasonable latest versions ([#749](https://github.com/nylas/nylas-nodejs/pull/749))

## [8.3.0] - 2026-06-17

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nylas",
"version": "8.3.0",
"version": "8.4.0",
"description": "A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.",
"main": "lib/cjs/nylas.js",
"types": "lib/types/nylas.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This file is generated by scripts/exportVersion.js
export const SDK_VERSION = '8.3.0';
export const SDK_VERSION = '8.4.0';
Loading