namespace AIStudio.Assistants.VisualBriefing; /// /// Stable structured logging event identifiers for the visual briefing subsystem. /// public enum VisualBriefingLogEventId { /// /// A build started. /// BUILD_STARTED = 4100, /// /// A persisted build resumed. /// BUILD_RESUMED = 4101, /// /// A stale build was superseded. /// BUILD_SUPERSEDED = 4102, /// /// A build reached a terminal state. /// BUILD_FINISHED = 4103, /// /// Source preparation started. /// SOURCE_PREPARATION_STARTED = 4110, /// /// Source preparation finished. /// SOURCE_PREPARATION_FINISHED = 4111, /// /// Media or source preparation was rejected. /// SOURCE_PREPARATION_REJECTED = 4112, /// /// A structured-agent call started. /// STRUCTURED_CALL_STARTED = 4120, /// /// A structured-agent call finished. /// STRUCTURED_CALL_FINISHED = 4121, /// /// A design-agent call started. /// DESIGN_CALL_STARTED = 4130, /// /// A design-agent call finished. /// DESIGN_CALL_FINISHED = 4131, /// /// A structured response was rejected by parsing or validation. /// VALIDATION_REJECTED = 4140, /// /// The single automatic repair attempt started. /// REPAIR_STARTED = 4141, /// /// The automatic repair attempt finished. /// REPAIR_FINISHED = 4142, /// /// Deterministic assembly started. /// ASSEMBLY_STARTED = 4150, /// /// Deterministic assembly finished. /// ASSEMBLY_FINISHED = 4151, /// /// An immutable revision was committed. /// REVISION_COMMITTED = 4152, /// /// Store initialization or reconciliation ran. /// STORE_RECOVERY = 4160, /// /// A store write or lock operation failed. /// STORE_REJECTED = 4161, /// /// A briefing import started or finished. /// IMPORT = 4170, /// /// A briefing export started or finished. /// EXPORT = 4171, /// /// A preview request was rejected. /// PREVIEW_REJECTED = 4180, /// /// A security validation rejected an artifact. /// SECURITY_REJECTED = 4181, }