/** * jarvis-web's per-group page-access ACL. One row per Cognito/retool kebab * group name; `pages` is a JSON array of page keys, with the special sentinel * `["FULL_ACCESS"]` meaning every page jarvis-web defines (now and future). * * Owned and consumed exclusively by the jarvis-web service. The entity lives * here so jarvis-web can reach the table via the standard * `getRepository(Entities.JarvisWebGroupAccess)` pattern. */ export declare class JarvisWebGroupAccess { groupName: string; pages: string[]; createdAt: Date; updatedAt: Date; }