Privileges.constants.ts 441 B

12345678
  1. export const COLUMN_PRIVILEGE_TYPES = ['SELECT', 'INSERT', 'UPDATE'] as const
  2. export type ColumnPrivilegeType = (typeof COLUMN_PRIVILEGE_TYPES)[number]
  3. export const TABLE_PRIVILEGE_TYPES = ['DELETE'] as const
  4. export type TablePrivilegeType = (typeof TABLE_PRIVILEGE_TYPES)[number]
  5. export const ALL_PRIVILEGE_TYPES = [...COLUMN_PRIVILEGE_TYPES, ...TABLE_PRIVILEGE_TYPES]
  6. export type PrivilegeType = ColumnPrivilegeType | TablePrivilegeType