From 7c9ca180de4cebc62cb2addcd19167bac7626843 Mon Sep 17 00:00:00 2001 From: Jerod Fritz Date: Mon, 12 Jan 2026 10:33:36 -0500 Subject: [PATCH] admin groups --- eshtek/admin.types.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/eshtek/admin.types.ts b/eshtek/admin.types.ts index ddecdbe..99ec02a 100644 --- a/eshtek/admin.types.ts +++ b/eshtek/admin.types.ts @@ -2,6 +2,16 @@ * Admin API Types and Interfaces */ +/** + * Admin access groups for role-based permissions + */ +export enum AdminGroup { + APPS = 'APPS', + BUSINESS = 'BUSINESS', + ENGINEERING = 'ENGINEERING', + FULL = 'FULL', +} + /** * Response from the catalog status endpoint */