fix(core): Ignore pairedItem when checking for incorrect output data from a node (#17340)

This commit is contained in:
Guillaume Jacquart
2025-07-22 09:22:35 +02:00
committed by GitHub
parent 73f8e72aca
commit 2708fe81a5
6 changed files with 66 additions and 14 deletions

View File

@@ -7,6 +7,8 @@ export type ErrorTags = NonNullable<Event['tags']>;
export type ReportingOptions = {
/** Whether the error should be reported to Sentry */
shouldReport?: boolean;
/** Whether the error log should be logged (default to true) */
shouldBeLogged?: boolean;
level?: ErrorLevel;
tags?: ErrorTags;
extra?: Event['extra'];