diff --git a/.changeset/full-queens-ask.md b/.changeset/full-queens-ask.md deleted file mode 100644 index 70e4d32..0000000 --- a/.changeset/full-queens-ask.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@plotday/tool-outlook-calendar": minor -"@plotday/tool-google-calendar": minor -"@plotday/tool-google-contacts": minor -"@plotday/sdk": minor ---- - -Changed: BREAKING: Creating and updating Activity using the Plot tool now requires requesting permission in options diff --git a/.changeset/fuzzy-beans-thank.md b/.changeset/fuzzy-beans-thank.md deleted file mode 100644 index 3405294..0000000 --- a/.changeset/fuzzy-beans-thank.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@plotday/tool-outlook-calendar": minor -"@plotday/tool-google-calendar": minor -"@plotday/tool-google-contacts": minor -"@plotday/sdk": minor ---- - -Changed: BREAKING: Agents and Tools now define a build() method to gain access to tools, which are then available via this.tools. -Changed: BREAKING: Webhook functionality has been moved into the Network tool. -Changed: BREAKING: CallbackTool renamed Callbacks. -Changed: BREAKING: Auth renamed Integrations. -Changed: BREAKING: Run renamed Tasks. diff --git a/.changeset/lazy-snakes-refuse.md b/.changeset/lazy-snakes-refuse.md deleted file mode 100644 index a4711b8..0000000 --- a/.changeset/lazy-snakes-refuse.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@plotday/sdk": minor ---- - -Added: Improved stack traces diff --git a/.changeset/sparkly-candles-camp.md b/.changeset/sparkly-candles-camp.md deleted file mode 100644 index 53b0fce..0000000 --- a/.changeset/sparkly-candles-camp.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@plotday/tool-outlook-calendar": patch -"@plotday/tool-google-calendar": patch -"@plotday/tool-google-contacts": patch ---- - -Changed: Update for new callback function names diff --git a/.changeset/sweet-clouds-dance.md b/.changeset/sweet-clouds-dance.md deleted file mode 100644 index 9b235ce..0000000 --- a/.changeset/sweet-clouds-dance.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@plotday/sdk": minor ---- - -Changed: BREAKING: Renamed callCallback, run, cancel, and cancelAll Agent/Tool functions diff --git a/.changeset/warm-beds-jump.md b/.changeset/warm-beds-jump.md deleted file mode 100644 index 30806e1..0000000 --- a/.changeset/warm-beds-jump.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@plotday/tool-outlook-calendar": minor -"@plotday/tool-google-calendar": minor -"@plotday/tool-google-contacts": minor -"@plotday/sdk": minor ---- - -Changed: BREAKING: Improved callback ergonomics and types to use functions instead of strings diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index ddafd18..3d1d794 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -1,5 +1,18 @@ # @plotday/sdk +## 0.17.0 + +### Added + +- Improved stack traces ([#51](https://github.com/plotday/plot/pull/51) [`02c6a1e`](https://github.com/plotday/plot/commit/02c6a1e834b9aa645f29191ed59ee5b66b70c32a)) + +### Changed + +- BREAKING: Creating and updating Activity using the Plot tool now requires requesting permission in options ([#51](https://github.com/plotday/plot/pull/51) [`b3242e4`](https://github.com/plotday/plot/commit/b3242e4adecea87011379ac2dd58712dc91729d7)) +- BREAKING: Agents and Tools now define a build() method to gain access to tools, which are then available via this.tools. +- BREAKING: Renamed callCallback, run, cancel, and cancelAll Agent/Tool functions ([#51](https://github.com/plotday/plot/pull/51) [`49b4dc9`](https://github.com/plotday/plot/commit/49b4dc94e08906a89799903610325c5fe7ebe10b)) +- BREAKING: Improved callback ergonomics and types to use functions instead of strings ([#51](https://github.com/plotday/plot/pull/51) [`02c6a1e`](https://github.com/plotday/plot/commit/02c6a1e834b9aa645f29191ed59ee5b66b70c32a)) + ## 0.16.1 ### Fixed diff --git a/sdk/package.json b/sdk/package.json index d1468d1..374cb08 100644 --- a/sdk/package.json +++ b/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@plotday/sdk", - "version": "0.16.1", + "version": "0.17.0", "description": "SDK for building Plot agents - intelligent assistants that organize and prioritize your activities", "packageManager": "pnpm@10.18.3", "type": "module", diff --git a/tools/google-calendar/CHANGELOG.md b/tools/google-calendar/CHANGELOG.md index 0c2969e..e58ee01 100644 --- a/tools/google-calendar/CHANGELOG.md +++ b/tools/google-calendar/CHANGELOG.md @@ -1,5 +1,16 @@ # @plotday/tool-google-calendar +## 0.2.0 + +### Changed + +- BREAKING: Creating and updating Activity using the Plot tool now requires requesting permission in options ([#51](https://github.com/plotday/plot/pull/51) [`b3242e4`](https://github.com/plotday/plot/commit/b3242e4adecea87011379ac2dd58712dc91729d7)) +- BREAKING: Agents and Tools now define a build() method to gain access to tools, which are then available via this.tools. +- BREAKING: Improved callback ergonomics and types to use functions instead of strings ([#51](https://github.com/plotday/plot/pull/51) [`02c6a1e`](https://github.com/plotday/plot/commit/02c6a1e834b9aa645f29191ed59ee5b66b70c32a)) +- Update for new callback function names ([#51](https://github.com/plotday/plot/pull/51) [`49b4dc9`](https://github.com/plotday/plot/commit/49b4dc94e08906a89799903610325c5fe7ebe10b)) +- Updated dependencies: +- @plotday/sdk@0.17.0 + ## 0.1.10 ### Changed diff --git a/tools/google-calendar/package.json b/tools/google-calendar/package.json index bbd0445..eab7e64 100644 --- a/tools/google-calendar/package.json +++ b/tools/google-calendar/package.json @@ -4,7 +4,7 @@ "description": "Sync with Google Calendar", "author": "Plot (https://plot.day)", "license": "MIT", - "version": "0.1.10", + "version": "0.2.0", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/tools/google-contacts/CHANGELOG.md b/tools/google-contacts/CHANGELOG.md index 573200a..bee57e1 100644 --- a/tools/google-contacts/CHANGELOG.md +++ b/tools/google-contacts/CHANGELOG.md @@ -1,5 +1,16 @@ # @plotday/tool-google-contacts +## 0.2.0 + +### Changed + +- BREAKING: Creating and updating Activity using the Plot tool now requires requesting permission in options ([#51](https://github.com/plotday/plot/pull/51) [`b3242e4`](https://github.com/plotday/plot/commit/b3242e4adecea87011379ac2dd58712dc91729d7)) +- BREAKING: Agents and Tools now define a build() method to gain access to tools, which are then available via this.tools. +- BREAKING: Improved callback ergonomics and types to use functions instead of strings ([#51](https://github.com/plotday/plot/pull/51) [`02c6a1e`](https://github.com/plotday/plot/commit/02c6a1e834b9aa645f29191ed59ee5b66b70c32a)) +- Update for new callback function names ([#51](https://github.com/plotday/plot/pull/51) [`49b4dc9`](https://github.com/plotday/plot/commit/49b4dc94e08906a89799903610325c5fe7ebe10b)) +- Updated dependencies: +- @plotday/sdk@0.17.0 + ## 0.1.10 ### Changed diff --git a/tools/google-contacts/package.json b/tools/google-contacts/package.json index e837300..90583ce 100644 --- a/tools/google-contacts/package.json +++ b/tools/google-contacts/package.json @@ -4,7 +4,7 @@ "description": "Sync with Google Contacts", "author": "Plot (https://plot.day)", "license": "MIT", - "version": "0.1.10", + "version": "0.2.0", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/tools/outlook-calendar/CHANGELOG.md b/tools/outlook-calendar/CHANGELOG.md index 2363baf..76b320f 100644 --- a/tools/outlook-calendar/CHANGELOG.md +++ b/tools/outlook-calendar/CHANGELOG.md @@ -1,5 +1,16 @@ # @plotday/tool-outlook-calendar +## 0.2.0 + +### Changed + +- BREAKING: Creating and updating Activity using the Plot tool now requires requesting permission in options ([#51](https://github.com/plotday/plot/pull/51) [`b3242e4`](https://github.com/plotday/plot/commit/b3242e4adecea87011379ac2dd58712dc91729d7)) +- BREAKING: Agents and Tools now define a build() method to gain access to tools, which are then available via this.tools. +- BREAKING: Improved callback ergonomics and types to use functions instead of strings ([#51](https://github.com/plotday/plot/pull/51) [`02c6a1e`](https://github.com/plotday/plot/commit/02c6a1e834b9aa645f29191ed59ee5b66b70c32a)) +- Update for new callback function names ([#51](https://github.com/plotday/plot/pull/51) [`49b4dc9`](https://github.com/plotday/plot/commit/49b4dc94e08906a89799903610325c5fe7ebe10b)) +- Updated dependencies: +- @plotday/sdk@0.17.0 + ## 0.1.10 ### Changed diff --git a/tools/outlook-calendar/package.json b/tools/outlook-calendar/package.json index 1556aa6..efd446b 100644 --- a/tools/outlook-calendar/package.json +++ b/tools/outlook-calendar/package.json @@ -4,7 +4,7 @@ "description": "Sync with Microsoft Outlook Calendar", "author": "Plot (https://plot.day)", "license": "MIT", - "version": "0.1.10", + "version": "0.2.0", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts",