Add interfaces package
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user