| 17 | |
| 18 | /** Represents the initializer for the table public.workspace_member */ |
| 19 | export interface WorkspaceMemberInitializer { |
| 20 | workspace_id: WorkspaceId; |
| 21 | |
| 22 | user_id: UserId; |
| 23 | |
| 24 | /** Default value: 'member'::user_role */ |
| 25 | role?: UserRole; |
| 26 | } |
| 27 | |
| 28 | /** Represents the mutator for the table public.workspace_member */ |
| 29 | export interface WorkspaceMemberMutator { |
nothing calls this directly
no outgoing calls
no test coverage detected