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
38 lines
1.7 KiB
Plaintext
38 lines
1.7 KiB
Plaintext
import { SQL } from "../index.cjs";
|
|
import { Subquery } from "../subquery.cjs";
|
|
import type { Check } from "./checks.cjs";
|
|
import type { ForeignKey } from "./foreign-keys.cjs";
|
|
import type { Index } from "./indexes.cjs";
|
|
import type { PrimaryKey } from "./primary-keys.cjs";
|
|
import type { IndexForHint } from "./query-builders/select.cjs";
|
|
import { MySqlTable } from "./table.cjs";
|
|
import { type UniqueConstraint } from "./unique-constraint.cjs";
|
|
import type { MySqlViewBase } from "./view-base.cjs";
|
|
import type { MySqlView } from "./view.cjs";
|
|
export declare function extractUsedTable(table: MySqlTable | Subquery | MySqlViewBase | SQL): string[];
|
|
export declare function getTableConfig(table: MySqlTable): {
|
|
columns: import("./index.ts").MySqlColumn<import("../index.ts").ColumnBaseConfig<import("../index.ts").ColumnDataType, string>, {}, {}>[];
|
|
indexes: Index[];
|
|
foreignKeys: ForeignKey[];
|
|
checks: Check[];
|
|
primaryKeys: PrimaryKey[];
|
|
uniqueConstraints: UniqueConstraint[];
|
|
name: string;
|
|
schema: string | undefined;
|
|
baseName: string;
|
|
};
|
|
export declare function getViewConfig<TName extends string = string, TExisting extends boolean = boolean>(view: MySqlView<TName, TExisting>): {
|
|
algorithm?: "undefined" | "merge" | "temptable";
|
|
sqlSecurity?: "definer" | "invoker";
|
|
withCheckOption?: "cascaded" | "local";
|
|
name: TName;
|
|
originalName: TName;
|
|
schema: string | undefined;
|
|
selectedFields: import("../index.ts").ColumnsSelection;
|
|
isExisting: TExisting;
|
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
isAlias: boolean;
|
|
};
|
|
export declare function convertIndexToString(indexes: IndexForHint[]): string[];
|
|
export declare function toArray<T>(value: T | T[]): T[];
|