pg: INTERACTIVE=1 to confirm each claim or skip it

This commit is contained in:
Ralf Vogler 2023-09-05 15:56:24 +02:00
parent 38975e811b
commit d8e2093a0d
3 changed files with 6 additions and 1 deletions

View file

@ -98,6 +98,7 @@ const timeoutPlugin = timeout => enquirer => { // cancel prompt after timeout ms
enquirer.use(timeoutPlugin(cfg.login_timeout)); // TODO may not want to have this timeout for all prompts; better extend Prompt and add a timeout prompt option
// single prompt that just returns the non-empty value instead of an object
export const prompt = o => enquirer.prompt({name: 'name', type: 'input', message: 'Enter value', ...o}).then(r => r.name).catch(_ => {});
export const confirm = o => prompt({type: 'confirm', message: 'Continue?', ...o})
// notifications via apprise CLI
import { exec } from 'child_process';