TenantAtlas/apps/platform/.pnpm-store/v10/files/06/e74eebce35c5d4919bae9d51f3e96d6e140d0efe46a78e49d69e8dbe04799a8e8ac156be839320506fdd47e2a619ce23c4ddeb4ea093cca014987d670be918
ahmido 1fec9c6f9d
Some checks failed
Main Confidence / confidence (push) Failing after 45s
feat: compress governance operator outcomes (#253)
## 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
2026-04-19 12:30:36 +00:00

211 lines
7.1 KiB
Plaintext

export declare const anonRole: import("../pg-core/roles.ts").PgRole;
export declare const authenticatedRole: import("../pg-core/roles.ts").PgRole;
export declare const serviceRole: import("../pg-core/roles.ts").PgRole;
export declare const postgresRole: import("../pg-core/roles.ts").PgRole;
export declare const supabaseAuthAdminRole: import("../pg-core/roles.ts").PgRole;
export declare const authUsers: import("../pg-core/index.ts").PgTableWithColumns<{
name: "users";
schema: "auth";
columns: {
id: import("../pg-core/index.ts").PgColumn<{
name: "id";
tableName: "users";
dataType: "string";
columnType: "PgUUID";
data: string;
driverParam: string;
notNull: true;
hasDefault: false;
isPrimaryKey: true;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: undefined;
baseColumn: never;
identity: undefined;
generated: undefined;
}, {}, {}>;
email: import("../pg-core/index.ts").PgColumn<{
name: "email";
tableName: "users";
dataType: "string";
columnType: "PgVarchar";
data: string;
driverParam: string;
notNull: false;
hasDefault: false;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: [string, ...string[]];
baseColumn: never;
identity: undefined;
generated: undefined;
}, {}, {
length: 255;
}>;
phone: import("../pg-core/index.ts").PgColumn<{
name: "phone";
tableName: "users";
dataType: "string";
columnType: "PgText";
data: string;
driverParam: string;
notNull: false;
hasDefault: false;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: [string, ...string[]];
baseColumn: never;
identity: undefined;
generated: undefined;
}, {}, {}>;
emailConfirmedAt: import("../pg-core/index.ts").PgColumn<{
name: "email_confirmed_at";
tableName: "users";
dataType: "date";
columnType: "PgTimestamp";
data: Date;
driverParam: string;
notNull: false;
hasDefault: false;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: undefined;
baseColumn: never;
identity: undefined;
generated: undefined;
}, {}, {}>;
phoneConfirmedAt: import("../pg-core/index.ts").PgColumn<{
name: "phone_confirmed_at";
tableName: "users";
dataType: "date";
columnType: "PgTimestamp";
data: Date;
driverParam: string;
notNull: false;
hasDefault: false;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: undefined;
baseColumn: never;
identity: undefined;
generated: undefined;
}, {}, {}>;
lastSignInAt: import("../pg-core/index.ts").PgColumn<{
name: "last_sign_in_at";
tableName: "users";
dataType: "date";
columnType: "PgTimestamp";
data: Date;
driverParam: string;
notNull: false;
hasDefault: false;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: undefined;
baseColumn: never;
identity: undefined;
generated: undefined;
}, {}, {}>;
createdAt: import("../pg-core/index.ts").PgColumn<{
name: "created_at";
tableName: "users";
dataType: "date";
columnType: "PgTimestamp";
data: Date;
driverParam: string;
notNull: false;
hasDefault: false;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: undefined;
baseColumn: never;
identity: undefined;
generated: undefined;
}, {}, {}>;
updatedAt: import("../pg-core/index.ts").PgColumn<{
name: "updated_at";
tableName: "users";
dataType: "date";
columnType: "PgTimestamp";
data: Date;
driverParam: string;
notNull: false;
hasDefault: false;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: undefined;
baseColumn: never;
identity: undefined;
generated: undefined;
}, {}, {}>;
};
dialect: "pg";
}>;
export declare const realtimeMessages: import("../pg-core/index.ts").PgTableWithColumns<{
name: "messages";
schema: "realtime";
columns: {
id: import("../pg-core/index.ts").PgColumn<{
name: "id";
tableName: "messages";
dataType: "bigint";
columnType: "PgBigSerial64";
data: bigint;
driverParam: string;
notNull: true;
hasDefault: true;
isPrimaryKey: true;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: undefined;
baseColumn: never;
identity: undefined;
generated: undefined;
}, {}, {}>;
topic: import("../pg-core/index.ts").PgColumn<{
name: "topic";
tableName: "messages";
dataType: "string";
columnType: "PgText";
data: string;
driverParam: string;
notNull: true;
hasDefault: false;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: [string, ...string[]];
baseColumn: never;
identity: undefined;
generated: undefined;
}, {}, {}>;
extension: import("../pg-core/index.ts").PgColumn<{
name: "extension";
tableName: "messages";
dataType: "string";
columnType: "PgText";
data: "presence" | "broadcast" | "postgres_changes";
driverParam: string;
notNull: true;
hasDefault: false;
isPrimaryKey: false;
isAutoincrement: false;
hasRuntimeDefault: false;
enumValues: ["presence", "broadcast", "postgres_changes"];
baseColumn: never;
identity: undefined;
generated: undefined;
}, {}, {}>;
};
dialect: "pg";
}>;
export declare const authUid: import("../sql/sql.ts").SQL<unknown>;
export declare const realtimeTopic: import("../sql/sql.ts").SQL<unknown>;