( org: string, user: string, role: 'developer' | 'admin' | 'owner', options?: ExecNpmOptions, )
| 429 | } |
| 430 | |
| 431 | export async function orgAddUser( |
| 432 | org: string, |
| 433 | user: string, |
| 434 | role: 'developer' | 'admin' | 'owner', |
| 435 | options?: ExecNpmOptions, |
| 436 | ): Promise<NpmExecResult> { |
| 437 | validateOrgName(org) |
| 438 | validateUsername(user) |
| 439 | return execNpm(['org', 'set', org, user, role], options) |
| 440 | } |
| 441 | |
| 442 | export async function orgRemoveUser( |
| 443 | org: string, |
no test coverage detected