PermissionAction
PermissionAction =
"read"|"create"|"update"|"delete"|"manage"
Defined in: packages/permissions/src/types.ts:45
A permission action: one of the four CRUD operations, or "manage" for all.
"read"maps toSELECTqueries."create"maps toINSERTstatements."update"maps toUPDATEstatements."delete"maps toDELETEstatements."manage"is shorthand for granting all four CRUD actions.