(value: string)
| 5312 | // ant-only commands |
| 5313 | if (process.env.USER_TYPE === 'ant') { |
| 5314 | const validateLogId = (value: string) => { |
| 5315 | const maybeSessionId = validateUuid(value); |
| 5316 | if (maybeSessionId) return maybeSessionId; |
| 5317 | return Number(value); |
| 5318 | }; |
| 5319 | // claude log |
| 5320 | program |
| 5321 | .command('log') |
nothing calls this directly
no test coverage detected