Some checks failed
Main Confidence / confidence (push) Failing after 45s
## 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
68 lines
2.3 KiB
Plaintext
68 lines
2.3 KiB
Plaintext
import { bigint } from "./bigint.js";
|
|
import { bigserial } from "./bigserial.js";
|
|
import { boolean } from "./boolean.js";
|
|
import { char } from "./char.js";
|
|
import { cidr } from "./cidr.js";
|
|
import { customType } from "./custom.js";
|
|
import { date } from "./date.js";
|
|
import { doublePrecision } from "./double-precision.js";
|
|
import { inet } from "./inet.js";
|
|
import { integer } from "./integer.js";
|
|
import { interval } from "./interval.js";
|
|
import { json } from "./json.js";
|
|
import { jsonb } from "./jsonb.js";
|
|
import { line } from "./line.js";
|
|
import { macaddr } from "./macaddr.js";
|
|
import { macaddr8 } from "./macaddr8.js";
|
|
import { numeric } from "./numeric.js";
|
|
import { point } from "./point.js";
|
|
import { geometry } from "./postgis_extension/geometry.js";
|
|
import { real } from "./real.js";
|
|
import { serial } from "./serial.js";
|
|
import { smallint } from "./smallint.js";
|
|
import { smallserial } from "./smallserial.js";
|
|
import { text } from "./text.js";
|
|
import { time } from "./time.js";
|
|
import { timestamp } from "./timestamp.js";
|
|
import { uuid } from "./uuid.js";
|
|
import { varchar } from "./varchar.js";
|
|
import { bit } from "./vector_extension/bit.js";
|
|
import { halfvec } from "./vector_extension/halfvec.js";
|
|
import { sparsevec } from "./vector_extension/sparsevec.js";
|
|
import { vector } from "./vector_extension/vector.js";
|
|
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>;
|