feat(rah-light): remove unused prompts.ts type file

- Delete src/types/prompts.ts (was used by deleted contextBuilder.ts)
- All other type files verified in use: analytics.ts, database.ts, logs.ts, views.ts, pdf-parse.d.ts

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
“BeeRad”
2026-01-29 15:40:18 +11:00
co-authored by Claude Opus 4.5
parent 8e1220ff65
commit 3181041090
-25
View File
@@ -1,25 +0,0 @@
/**
* Types for Anthropic prompt caching
* https://docs.claude.com/en/docs/build-with-claude/prompt-caching
*/
export type CacheControl = { type: 'ephemeral' };
export interface CacheableBlock {
type: 'text';
text: string;
cache_control?: CacheControl;
}
export interface SystemPromptResult {
blocks: CacheableBlock[];
cacheHit: boolean;
}
export interface CacheStats {
cacheCreationInputTokens: number;
cacheReadInputTokens: number;
inputTokens: number;
outputTokens: number;
savingsPercentage: number;
}