return askInput.questions.map((q, idx) => {
const opts: ChatInputOption[] = q.options.map(opt => ({
label: opt.label,
...(opt.description !== undefined ? { description: opt.description } : {}),
}));
const id = askUserQuestionId(q.header, idx);