1/** 2 * Copyright (c) 2024 Gitpod GmbH. All rights reserved. 3 * Licensed under the GNU Affero General Public License (AGPL). 4 * See License.AGPL.txt in the project root for license information. 5 */ 6 7export interface AuditLog { 8 id: string; 9 timestamp: string; 10 action: string; 11 organizationId: string; 12 actorId: string; 13 args: object[]; 14} 15 16