refactor: rename aris to aelis

Rename all references across the codebase: package names,
imports, source IDs, directory names, docs, and configs.

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2026-03-05 01:28:17 +00:00
parent badc00c43b
commit 73417f79a8
201 changed files with 318 additions and 323 deletions

View File

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