feat: add Google Calendar data source

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2026-02-14 15:20:57 +00:00
parent e5d65816dc
commit 512faf191e
10 changed files with 882 additions and 21 deletions

View File

@@ -0,0 +1,13 @@
import type { ContextKey } from "@aris/core"
import { contextKey } from "@aris/core"
export interface NextEvent {
title: string
startTime: Date
endTime: Date
minutesUntilStart: number
location: string | null
}
export const NextEventKey: ContextKey<NextEvent> = contextKey("nextEvent")