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
41 lines
2.2 KiB
Plaintext
41 lines
2.2 KiB
Plaintext
import { entityKind } from "../../entity.js";
|
|
import type { GelDialectConfig } from "../dialect.js";
|
|
import { GelDialect } from "../dialect.js";
|
|
import type { TypedQueryBuilder } from "../../query-builders/query-builder.js";
|
|
import type { ColumnsSelection, SQLWrapper } from "../../sql/sql.js";
|
|
import { WithSubquery } from "../../subquery.js";
|
|
import type { GelColumn } from "../columns/index.js";
|
|
import type { WithSubqueryWithSelection } from "../subquery.js";
|
|
import { GelSelectBuilder } from "./select.js";
|
|
import type { SelectedFields } from "./select.types.js";
|
|
export declare class QueryBuilder {
|
|
static readonly [entityKind]: string;
|
|
private dialect;
|
|
private dialectConfig;
|
|
constructor(dialect?: GelDialect | GelDialectConfig);
|
|
$with<TAlias extends string>(alias: TAlias): {
|
|
as<TSelection extends ColumnsSelection>(qb: TypedQueryBuilder<TSelection> | ((qb: QueryBuilder) => TypedQueryBuilder<TSelection>)): WithSubqueryWithSelection<TSelection, TAlias>;
|
|
};
|
|
with(...queries: WithSubquery[]): {
|
|
select: {
|
|
(): GelSelectBuilder<undefined, "qb">;
|
|
<TSelection extends SelectedFields>(fields: TSelection): GelSelectBuilder<TSelection, "qb">;
|
|
};
|
|
selectDistinct: {
|
|
(): GelSelectBuilder<undefined, "qb">;
|
|
<TSelection extends SelectedFields>(fields: TSelection): GelSelectBuilder<TSelection, "qb">;
|
|
};
|
|
selectDistinctOn: {
|
|
(on: (GelColumn | SQLWrapper)[]): GelSelectBuilder<undefined, "qb">;
|
|
<TSelection extends SelectedFields>(on: (GelColumn | SQLWrapper)[], fields: TSelection): GelSelectBuilder<TSelection, "qb">;
|
|
};
|
|
};
|
|
select(): GelSelectBuilder<undefined, 'qb'>;
|
|
select<TSelection extends SelectedFields>(fields: TSelection): GelSelectBuilder<TSelection, 'qb'>;
|
|
selectDistinct(): GelSelectBuilder<undefined>;
|
|
selectDistinct<TSelection extends SelectedFields>(fields: TSelection): GelSelectBuilder<TSelection>;
|
|
selectDistinctOn(on: (GelColumn | SQLWrapper)[]): GelSelectBuilder<undefined>;
|
|
selectDistinctOn<TSelection extends SelectedFields>(on: (GelColumn | SQLWrapper)[], fields: TSelection): GelSelectBuilder<TSelection>;
|
|
private getDialect;
|
|
}
|