Add interfaces package

This commit is contained in:
2026-05-05 12:03:46 +00:00
commit 8ceec521eb
21 changed files with 485 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
export type TAuditReceiptKind = 'tool' | 'approval' | 'automation' | 'agent' | 'system';
export interface IAuditReceipt {
id: string;
kind: TAuditReceiptKind;
callerId: string;
toolId?: string;
approvalId?: string;
scope?: string;
inputSummary: string;
outputSummary: string;
reversible: boolean;
createdAt: string;
}