( executionTarget: 'local' | 'remote' | 'byoc', )
| 459 | } |
| 460 | |
| 461 | function formatExecutionTargetLabel( |
| 462 | executionTarget: 'local' | 'remote' | 'byoc', |
| 463 | ): string { |
| 464 | switch (executionTarget) { |
| 465 | case 'local': |
| 466 | return 'Local' |
| 467 | case 'remote': |
| 468 | return 'Remote' |
| 469 | case 'byoc': |
| 470 | return 'BYOC' |
| 471 | } |
| 472 | } |
| 473 | |
| 474 | export async function authLogout(): Promise<void> { |
| 475 | try { |