TenantAtlas/apps/platform/.pnpm-store/v10/files/79/6469689725b77901de39e38d8f6a70401eeb64d9cafddc79dd5a18a40308aa32e41b54d362975c0a79108bd903b135d39da161d8228b17419e1cc40df61724
ahmido 1fec9c6f9d
Some checks failed
Main Confidence / confidence (push) Failing after 45s
feat: compress governance operator outcomes (#253)
## Summary
- introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries
- apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces
- expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests

## Validation
- `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent`
- focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions)
- `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions)

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #253
2026-04-19 12:30:36 +00:00

69 lines
2.0 KiB
Plaintext

import { SuccessCondition } from './completion-listener';
export declare const defaultInputTarget = 0;
/**
* Whether process.stdin should be forwarded to child processes.
*/
export declare const handleInput = false;
/**
* How many processes to run at once.
*/
export declare const maxProcesses = 0;
/**
* Indices and names of commands whose output are not to be logged.
*/
export declare const hide = "";
/**
* The character to split <names> on.
*/
export declare const nameSeparator = ",";
/**
* Which prefix style to use when logging processes output.
*/
export declare const prefix = "";
/**
* Default prefix color.
* @see https://www.npmjs.com/package/chalk
*/
export declare const prefixColors = "reset";
/**
* How many bytes we'll show on the command prefix.
*/
export declare const prefixLength = 10;
export declare const raw = false;
/**
* Number of attempts of restarting a process, if it exits with non-0 code.
*/
export declare const restartTries = 0;
/**
* How many milliseconds concurrently should wait before restarting a process.
*/
export declare const restartDelay = 0;
/**
* Condition of success for concurrently itself.
*/
export declare const success: SuccessCondition;
/**
* Date format used when logging date/time.
* @see https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
*/
export declare const timestampFormat = "yyyy-MM-dd HH:mm:ss.SSS";
/**
* Current working dir passed as option to spawn command.
* Defaults to process.cwd()
*/
export declare const cwd: string | undefined;
/**
* Whether to show timing information for processes in console output.
*/
export declare const timings = false;
/**
* Passthrough additional arguments to commands (accessible via placeholders) instead of treating them as commands.
*/
export declare const passthroughArguments = false;
/**
* Signal to send to other processes if one exits or dies.
*
* Defaults to OS specific signal. (SIGTERM on Linux/MacOS)
*/
export declare const killSignal: string | undefined;