fix: Prevent errors processed by n8n to be flagged as internal (no-changelog) (#10023)

This commit is contained in:
Michael Kret
2024-07-12 11:13:17 +03:00
committed by GitHub
parent 1d2b403644
commit e2dd000d13
8 changed files with 105 additions and 10 deletions

View File

@@ -8,8 +8,9 @@ import { useUIStore } from '@/stores/ui.store';
import { useI18n } from './useI18n';
import { useExternalHooks } from './useExternalHooks';
import { VIEWS } from '@/constants';
import type { ApplicationError } from 'n8n-workflow';
export interface NotificationErrorWithNodeAndDescription extends Error {
export interface NotificationErrorWithNodeAndDescription extends ApplicationError {
node: {
name: string;
};