Skip to content
Open
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/add-related-source.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/add-todoist-auth-provider.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/admin-capabilities.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/channel-link-types.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/deploy-publisher-auto-resolve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/deploy-retry-429.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/optional-link-title.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/private-threads-newlink.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/remove-link-id.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/secure-options-no-oauth.md

This file was deleted.

11 changes: 9 additions & 2 deletions connectors/fellow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@
"directory": "connectors/fellow"
},
"homepage": "https://plot.day",
"keywords": ["plot", "connector", "fellow", "meetings"],
"publishConfig": { "access": "public" }
"keywords": [
"plot",
"connector",
"fellow",
"meetings"
],
"publishConfig": {
"access": "public"
}
}
4 changes: 3 additions & 1 deletion connectors/google-chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,7 @@
"google-chat",
"messaging"
],
"publishConfig": { "access": "public" }
"publishConfig": {
"access": "public"
}
}
16 changes: 13 additions & 3 deletions connectors/google-tasks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@
"default": "./dist/index.js"
}
},
"files": ["dist", "README.md", "LICENSE"],
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist"
Expand All @@ -35,6 +39,12 @@
"directory": "connectors/google-tasks"
},
"homepage": "https://plot.day",
"keywords": ["plot", "connector", "google-tasks"],
"publishConfig": { "access": "public" }
"keywords": [
"plot",
"connector",
"google-tasks"
],
"publishConfig": {
"access": "public"
}
}
17 changes: 14 additions & 3 deletions connectors/posthog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
"default": "./dist/index.js"
}
},
"files": ["dist", "README.md", "LICENSE"],
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist"
Expand All @@ -34,6 +38,13 @@
"directory": "connectors/posthog"
},
"homepage": "https://plot.day",
"keywords": ["plot", "connector", "posthog", "analytics"],
"publishConfig": { "access": "public" }
"keywords": [
"plot",
"connector",
"posthog",
"analytics"
],
"publishConfig": {
"access": "public"
}
}
16 changes: 13 additions & 3 deletions connectors/todoist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@
"default": "./dist/index.js"
}
},
"files": ["dist", "README.md", "LICENSE"],
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist"
Expand All @@ -35,6 +39,12 @@
"directory": "connectors/todoist"
},
"homepage": "https://plot.day",
"keywords": ["plot", "connector", "todoist"],
"publishConfig": { "access": "public" }
"keywords": [
"plot",
"connector",
"todoist"
],
"publishConfig": {
"access": "public"
}
}
24 changes: 24 additions & 0 deletions twister/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @plotday/twister

## 0.44.0

### Added

- `relatedSource` field on `Link` type for cross-connector thread bundling. Links whose `source` matches another link's `relatedSource` automatically share the same thread, regardless of creation order. ([`b854bdd`](https://github.com/plotday/plot/commit/b854bddc8f7b4c67f01f1a14f6f33deba82332f1))
- Todoist auth provider ([`855f2d4`](https://github.com/plotday/plot/commit/855f2d445237c0a9e766f5a087dbbbfd2343b947))
- `ThreadAccess.Full` permission level for listing, updating, and moving any thread in the twist's priority scope, and creating notes on any thread.
- optional `linkTypes` field to `Channel` type for per-channel link type configs (e.g., dynamic issue statuses per Linear team) ([`94aaa03`](https://github.com/plotday/plot/commit/94aaa03b7cd4f6388f5f836b9b0ac266f2098abd))
- `private` field on `NewLink` type for creating private threads via `saveLink()` ([`be8ff14`](https://github.com/plotday/plot/commit/be8ff140550c348d59bfe44da44442c5c8a7a071))
- `secure` property on TextDef for encrypted option values (API keys, secrets)

### Changed

- `NewLinkWithNotes.title` is now optional — omit to preserve existing title on upsert ([`bf3992a`](https://github.com/plotday/plot/commit/bf3992aefdae844ca7c00b9044ef81f7f2513947))

### Removed

- `id` field from `Link` type and `{ id: Uuid }` variant from `NewLink` union. Use `source` for link identification. ([`02e701d`](https://github.com/plotday/plot/commit/02e701d9ce9942848debfef84a52831db353e205))

### Fixed

- `plot deploy` now reads `publisher` and `publisherUrl` from package.json to auto-resolve the publisher for non-personal deployments, and fails with exit code 1 in non-interactive environments instead of silently succeeding. ([`e155366`](https://github.com/plotday/plot/commit/e1553663b7b9958d727492f02fbf36b551d84824))
- CLI deploy command now retries on 429 (rate-limited) and 503 (service unavailable) responses with Retry-After support ([`2a511b7`](https://github.com/plotday/plot/commit/2a511b7ae1306a734634a130f904963170584051))

## 0.43.0

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