TenantAtlas/apps/platform/.pnpm-store/v10/files/8c/e1d5b0672da2e3a26e1dcb5a02ea61fa8bb3111d2474bd921346bf8253a7479cfb51005c21d31da18136fb984fa8c646c6d7d111cec3dd8ee2235f5142074e
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

68 lines
2.3 KiB
Plaintext

import { bigint } from "./bigint.cjs";
import { bigserial } from "./bigserial.cjs";
import { boolean } from "./boolean.cjs";
import { char } from "./char.cjs";
import { cidr } from "./cidr.cjs";
import { customType } from "./custom.cjs";
import { date } from "./date.cjs";
import { doublePrecision } from "./double-precision.cjs";
import { inet } from "./inet.cjs";
import { integer } from "./integer.cjs";
import { interval } from "./interval.cjs";
import { json } from "./json.cjs";
import { jsonb } from "./jsonb.cjs";
import { line } from "./line.cjs";
import { macaddr } from "./macaddr.cjs";
import { macaddr8 } from "./macaddr8.cjs";
import { numeric } from "./numeric.cjs";
import { point } from "./point.cjs";
import { geometry } from "./postgis_extension/geometry.cjs";
import { real } from "./real.cjs";
import { serial } from "./serial.cjs";
import { smallint } from "./smallint.cjs";
import { smallserial } from "./smallserial.cjs";
import { text } from "./text.cjs";
import { time } from "./time.cjs";
import { timestamp } from "./timestamp.cjs";
import { uuid } from "./uuid.cjs";
import { varchar } from "./varchar.cjs";
import { bit } from "./vector_extension/bit.cjs";
import { halfvec } from "./vector_extension/halfvec.cjs";
import { sparsevec } from "./vector_extension/sparsevec.cjs";
import { vector } from "./vector_extension/vector.cjs";
export declare function getPgColumnBuilders(): {
bigint: typeof bigint;
bigserial: typeof bigserial;
boolean: typeof boolean;
char: typeof char;
cidr: typeof cidr;
customType: typeof customType;
date: typeof date;
doublePrecision: typeof doublePrecision;
inet: typeof inet;
integer: typeof integer;
interval: typeof interval;
json: typeof json;
jsonb: typeof jsonb;
line: typeof line;
macaddr: typeof macaddr;
macaddr8: typeof macaddr8;
numeric: typeof numeric;
point: typeof point;
geometry: typeof geometry;
real: typeof real;
serial: typeof serial;
smallint: typeof smallint;
smallserial: typeof smallserial;
text: typeof text;
time: typeof time;
timestamp: typeof timestamp;
uuid: typeof uuid;
varchar: typeof varchar;
bit: typeof bit;
halfvec: typeof halfvec;
sparsevec: typeof sparsevec;
vector: typeof vector;
};
export type PgColumnsBuilders = ReturnType<typeof getPgColumnBuilders>;