(workspaceId: string)
| 43 | } |
| 44 | |
| 45 | export async function getWorkspaceBilledAccountUserId(workspaceId: string): Promise<string | null> { |
| 46 | const settings = await getWorkspaceBillingSettings(workspaceId) |
| 47 | return settings?.billedAccountUserId ?? null |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Workspaces the user administers purely through organization owner/admin role, |
no test coverage detected