/** * Log-related types for the Cloud Build plugin. */ export type LogSeverity = 'DEFAULT' | 'DEBUG' | 'INFO' | 'NOTICE' | 'WARNING' | 'ERROR' | 'CRITICAL' | 'ALERT' | 'EMERGENCY'; export interface LogEntry { timestamp: Date; severity: LogSeverity; message: string; stepId?: string; textPayload?: string; jsonPayload?: Record; insertId?: string; } export interface LogStreamOptions { pollingIntervalMs?: number; startOffset?: number; } //# sourceMappingURL=logs.d.ts.map