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
50 lines
2.7 KiB
Plaintext
50 lines
2.7 KiB
Plaintext
import type { ColumnBuilderBaseConfig } from "../../column-builder.js";
|
|
import type { ColumnBaseConfig } from "../../column.js";
|
|
import { entityKind } from "../../entity.js";
|
|
import { type Equal } from "../../utils.js";
|
|
import { MySqlDateBaseColumn, MySqlDateColumnBaseBuilder } from "./date.common.js";
|
|
export type MySqlTimestampBuilderInitial<TName extends string> = MySqlTimestampBuilder<{
|
|
name: TName;
|
|
dataType: 'date';
|
|
columnType: 'MySqlTimestamp';
|
|
data: Date;
|
|
driverParam: string | number;
|
|
enumValues: undefined;
|
|
}>;
|
|
export declare class MySqlTimestampBuilder<T extends ColumnBuilderBaseConfig<'date', 'MySqlTimestamp'>> extends MySqlDateColumnBaseBuilder<T, MySqlTimestampConfig> {
|
|
static readonly [entityKind]: string;
|
|
constructor(name: T['name'], config: MySqlTimestampConfig | undefined);
|
|
}
|
|
export declare class MySqlTimestamp<T extends ColumnBaseConfig<'date', 'MySqlTimestamp'>> extends MySqlDateBaseColumn<T, MySqlTimestampConfig> {
|
|
static readonly [entityKind]: string;
|
|
readonly fsp: number | undefined;
|
|
getSQLType(): string;
|
|
mapFromDriverValue(value: string): Date;
|
|
mapToDriverValue(value: Date): string;
|
|
}
|
|
export type MySqlTimestampStringBuilderInitial<TName extends string> = MySqlTimestampStringBuilder<{
|
|
name: TName;
|
|
dataType: 'string';
|
|
columnType: 'MySqlTimestampString';
|
|
data: string;
|
|
driverParam: string | number;
|
|
enumValues: undefined;
|
|
}>;
|
|
export declare class MySqlTimestampStringBuilder<T extends ColumnBuilderBaseConfig<'string', 'MySqlTimestampString'>> extends MySqlDateColumnBaseBuilder<T, MySqlTimestampConfig> {
|
|
static readonly [entityKind]: string;
|
|
constructor(name: T['name'], config: MySqlTimestampConfig | undefined);
|
|
}
|
|
export declare class MySqlTimestampString<T extends ColumnBaseConfig<'string', 'MySqlTimestampString'>> extends MySqlDateBaseColumn<T, MySqlTimestampConfig> {
|
|
static readonly [entityKind]: string;
|
|
readonly fsp: number | undefined;
|
|
getSQLType(): string;
|
|
}
|
|
export type TimestampFsp = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
export interface MySqlTimestampConfig<TMode extends 'string' | 'date' = 'string' | 'date'> {
|
|
mode?: TMode;
|
|
fsp?: TimestampFsp;
|
|
}
|
|
export declare function timestamp(): MySqlTimestampBuilderInitial<''>;
|
|
export declare function timestamp<TMode extends MySqlTimestampConfig['mode'] & {}>(config?: MySqlTimestampConfig<TMode>): Equal<TMode, 'string'> extends true ? MySqlTimestampStringBuilderInitial<''> : MySqlTimestampBuilderInitial<''>;
|
|
export declare function timestamp<TName extends string, TMode extends MySqlTimestampConfig['mode'] & {}>(name: TName, config?: MySqlTimestampConfig<TMode>): Equal<TMode, 'string'> extends true ? MySqlTimestampStringBuilderInitial<TName> : MySqlTimestampBuilderInitial<TName>;
|