import { z } from 'zod' export const QUERY_KEY = 'sys_role' export const ActionSchema = z .enum(['add', 'edit', 'delete', 'assign-apis', 'assign-menus']) .nullable() export type Action = z.infer