Skip to content

Commit 0f1c5aa

Browse files
committed
Add Fathom API changelog monitoring feature to README.md
- Introduced a new feature in the Future Development Plans section for automated detection of Fathom API changes via GitHub Action, which creates an issue if changes are detected. - Removed a todo comment in the searchMeetings function to clarify the Zod schema description.
1 parent 08ea1dc commit 0f1c5aa

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ See [RELEASING.md](RELEASING.md) for version and release instructions.
191191
- **Meeting analytics** — Calculate stats like total meeting time, meeting frequency, and top attendees.
192192
- **Speaker time analysis** — Analyze transcripts to show who spoke most in a meeting.
193193
- **Meeting comparison** — Compare two meeting summaries to highlight what changed over time.
194+
- **Fathom API changelog monitoring** — Automated detection of Fathom API changes via GitHub Action that periodically checks their API reference and creates an issue if changes are detected.
194195

195196
Contributions toward these goals are welcome. See [CONTRIBUTING.md](CONTRIBUTING.md).
196197

src/tools/handlers.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ export async function searchMeetings(
120120
args: unknown,
121121
): Promise<CallToolResult> {
122122
try {
123-
// todo: add note to zod schema 'this searches title and meeting title'
124123
const input = searchMeetingsReqSchema.parse(args);
125124
const service = await FathomAPIClient.createAuthorizedService(userId);
126125
const data = await service.listMeetings(input);

0 commit comments

Comments
 (0)