QuickAdd Plugin bypass input prompt

Continuing the discussion from QuickAdd plugin and empty/falsy values:

For this, you can use a zero-width-space ("\u200b"). It will still get added to your note but at least will not affect the visual.

It would be nice if QuickAdd supported bypassing the input prompt when executing choices programmatically.

Perhaps something like this:

// `bypass` is a proposed unique Symbol
const { executeChoice, bypass } = app.plugins.getPlugin("quickadd").api

await executeChoice("Movie Template", {
  name: "Something",
  watched: bypass,
})

QuickAdd could detect the Symbol and bypass the input prompt.