fix: Fixes to command stream
Chart Release / chart (push) Successful in 11s
Server Deploy / deploy (push) Successful in 2m36s

This commit is contained in:
2026-08-10 14:07:17 +01:00
parent 727bb09eff
commit ef86ef04a1
4 changed files with 119 additions and 22 deletions
+7 -7
View File
@@ -247,13 +247,13 @@ export interface Entitlement {
updated_at: string;
}
export interface CustomerUser {
user_id: string;
account_id: string;
email: string;
verified_at?: string | null;
created_at: string;
}
/*
* Staff and customer screens read the SAME customer_users row, so they share one
* type. There used to be a second, narrower CustomerUser for the staff side; it
* silently stopped matching the moment account_role was added to the model, and
* a subset type cannot warn about a field it never claimed to have.
*/
export type CustomerUser = AccountUser;
export interface AuditEntry {
actor: string;