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
5 changes: 0 additions & 5 deletions .changeset/connector-account-identity.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/imap-attachments.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/imap-fetch-attachment.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/imap-header-fields.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/imap-highest-modseq.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/imap-idle-push-watch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smtp-attachments.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/task-connector-compose-todo-default.md

This file was deleted.

7 changes: 7 additions & 0 deletions libs/email-classifier/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
# @plotday/email-classifier

## 0.2.7

### Changed

- Updated dependencies:
- @plotday/twister@0.85.0

## 0.2.6

### Changed
Expand Down
2 changes: 1 addition & 1 deletion libs/email-classifier/package.json
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
{
"name": "@plotday/email-classifier",
"private": true,
"version": "0.2.6",
"version": "0.2.7",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
7 changes: 7 additions & 0 deletions libs/google-contacts/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
# @plotday/tool-google-contacts

## 0.6.8

### Changed

- Updated dependencies:
- @plotday/twister@0.85.0

## 0.6.7

### Changed
Expand Down
2 changes: 1 addition & 1 deletion libs/google-contacts/package.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,7 +2,7 @@
"name": "@plotday/google-contacts",
"author": "Plot <team@plot.day> (https://plot.day)",
"license": "MIT",
"version": "0.6.7",
"version": "0.6.8",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
13 changes: 13 additions & 0 deletions twister/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
# @plotday/twister

## 0.85.0

### Added

- `Connector.getAccountIdentity()` lets non-OAuth connectors declare a matchable identity email for the connected account. ([#331](https://github.com/plotday/plot/pull/331) [`b235fa6`](https://github.com/plotday/plot/commit/b235fa60c175e08fe7de2bf53ec3067903c07bd6))
- `ImapMessage.attachments` surfaces attachment parts discovered from a fetched message's BODYSTRUCTURE. ([#331](https://github.com/plotday/plot/pull/331) [`b235fa6`](https://github.com/plotday/plot/commit/b235fa60c175e08fe7de2bf53ec3067903c07bd6))
- `Imap.fetchAttachment()` downloads the raw decoded bytes of a message attachment by IMAP part number (as reported in `ImapMessage.attachments`). ([#331](https://github.com/plotday/plot/pull/331) [`b235fa6`](https://github.com/plotday/plot/commit/b235fa60c175e08fe7de2bf53ec3067903c07bd6))
- `ImapMessage` now carries `listId`, `listUnsubscribe`, `precedence`, `autoSubmitted`, `returnPath`, `importance`, `xPriority`, and `authenticationResults` (the raw values of any headers a connector's IMAP fetch picked up), so an IMAP-based mail connector can build classifier signals the same way the Gmail and Outlook connectors already do. ([#331](https://github.com/plotday/plot/pull/331) [`b235fa6`](https://github.com/plotday/plot/commit/b235fa60c175e08fe7de2bf53ec3067903c07bd6))
- `ImapMailboxStatus.highestModSeq` — surfaces a mailbox's CONDSTORE (RFC 7162) `HIGHESTMODSEQ` high-water mark when the IMAP server advertises it. Connectors can persist this value as a since-last-poll cursor and skip re-scanning a mailbox whose mod-sequence hasn't advanced, instead of refetching a recent-message window every poll. The field is absent when the server or mailbox does not support mod-sequences. ([#331](https://github.com/plotday/plot/pull/331) [`b235fa6`](https://github.com/plotday/plot/commit/b235fa60c175e08fe7de2bf53ec3067903c07bd6))
- `Imap.watch()` / `Imap.unwatch()` — server-maintained IMAP IDLE push
- `SmtpMessage.attachments` lets connectors include file attachments when sending email through the SMTP tool. ([#331](https://github.com/plotday/plot/pull/331) [`b235fa6`](https://github.com/plotday/plot/commit/b235fa60c175e08fe7de2bf53ec3067903c07bd6))
- `ComposeConfig.todo` lets a connector's link type default the note

## 0.84.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion twister/package.json
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "@plotday/twister",
"version": "0.84.0",
"version": "0.85.0",
"description": "Plot Twist Creator - Build intelligent extensions that integrate and automate",
"packageManager": "pnpm@10.18.3",
"type": "module",
Expand Down