(org: string)
| 529 | // List functions (for reading data) - silent since they're not user-triggered operations |
| 530 | |
| 531 | export async function orgListUsers(org: string): Promise<NpmExecResult> { |
| 532 | validateOrgName(org) |
| 533 | return execNpm(['org', 'ls', org, '--json'], { silent: true }) |
| 534 | } |
| 535 | |
| 536 | export async function teamListTeams(org: string): Promise<NpmExecResult> { |
| 537 | validateOrgName(org) |
no test coverage detected