As mentioned in subject, operations on defined names does not trigger actionComplete handler which is not desired, especially when doing collaborative editing. Is that a bug or am I missing something?
My workaround:
spread.on("workbookFormulaOperation", ({ action }) => {
const actions = [
"addDefinedName",
"removeDefinedName"
"refreshNamedRange",
"initiateDefinedNames",
];
if (actions.some(a => a === action)) {
// handle
}
});