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
47 lines
2.5 KiB
Plaintext
47 lines
2.5 KiB
Plaintext
import { entityKind } from "../../entity.cjs";
|
|
import { QueryPromise } from "../../query-promise.cjs";
|
|
import { type BuildQueryResult, type DBQueryConfig, type TableRelationalConfig, type TablesRelationalConfig } from "../../relations.cjs";
|
|
import type { RunnableQuery } from "../../runnable-query.cjs";
|
|
import type { Query, SQLWrapper } from "../../sql/sql.cjs";
|
|
import type { KnownKeysOnly } from "../../utils.cjs";
|
|
import type { GelDialect } from "../dialect.cjs";
|
|
import type { GelPreparedQuery, GelSession, PreparedQueryConfig } from "../session.cjs";
|
|
import type { GelTable } from "../table.cjs";
|
|
export declare class RelationalQueryBuilder<TSchema extends TablesRelationalConfig, TFields extends TableRelationalConfig> {
|
|
private fullSchema;
|
|
private schema;
|
|
private tableNamesMap;
|
|
private table;
|
|
private tableConfig;
|
|
private dialect;
|
|
private session;
|
|
static readonly [entityKind]: string;
|
|
constructor(fullSchema: Record<string, unknown>, schema: TSchema, tableNamesMap: Record<string, string>, table: GelTable, tableConfig: TableRelationalConfig, dialect: GelDialect, session: GelSession);
|
|
findMany<TConfig extends DBQueryConfig<'many', true, TSchema, TFields>>(config?: KnownKeysOnly<TConfig, DBQueryConfig<'many', true, TSchema, TFields>>): GelRelationalQuery<BuildQueryResult<TSchema, TFields, TConfig>[]>;
|
|
findFirst<TSelection extends Omit<DBQueryConfig<'many', true, TSchema, TFields>, 'limit'>>(config?: KnownKeysOnly<TSelection, Omit<DBQueryConfig<'many', true, TSchema, TFields>, 'limit'>>): GelRelationalQuery<BuildQueryResult<TSchema, TFields, TSelection> | undefined>;
|
|
}
|
|
export declare class GelRelationalQuery<TResult> extends QueryPromise<TResult> implements RunnableQuery<TResult, 'gel'>, SQLWrapper {
|
|
private fullSchema;
|
|
private schema;
|
|
private tableNamesMap;
|
|
private table;
|
|
private tableConfig;
|
|
private dialect;
|
|
private session;
|
|
private config;
|
|
private mode;
|
|
static readonly [entityKind]: string;
|
|
readonly _: {
|
|
readonly dialect: 'gel';
|
|
readonly result: TResult;
|
|
};
|
|
constructor(fullSchema: Record<string, unknown>, schema: TablesRelationalConfig, tableNamesMap: Record<string, string>, table: GelTable, tableConfig: TableRelationalConfig, dialect: GelDialect, session: GelSession, config: DBQueryConfig<'many', true> | true, mode: 'many' | 'first');
|
|
prepare(name: string): GelPreparedQuery<PreparedQueryConfig & {
|
|
execute: TResult;
|
|
}>;
|
|
private _getQuery;
|
|
private _toSQL;
|
|
toSQL(): Query;
|
|
execute(): Promise<TResult>;
|
|
}
|