- Enrich drift findings evidence_jsonb for diff UX (summary.kind, refs, fidelity, provenance) - Add baseline policy version resolver and contract asserts - Remove legacy drift generator + DriftLanding surfaces - Add one-time cleanup migration for legacy drift findings - Scope baseline capture/landing warnings to latest inventory sync - Canonicalize compliance scheduledActionsForRule drift signal
13 lines
234 B
PHP
13 lines
234 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Baselines;
|
|
|
|
enum PolicyVersionCapturePurpose: string
|
|
{
|
|
case Backup = 'backup';
|
|
case BaselineCapture = 'baseline_capture';
|
|
case BaselineCompare = 'baseline_compare';
|
|
}
|