Keep reporting [path-related errors](https://n8nio.sentry.io/issues/4649493725) in Sentry but consolidate them in a single error group. Also, add `options.extra` as `meta` so they remain visible in debug logs: ``` 2023-11-24T11:50:54.852Z | error | ReportableError: Something went wrong "{ test: 123, file: 'LoggerProxy.js', function: 'exports.error' }" ``` --------- Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
21 lines
791 B
TypeScript
21 lines
791 B
TypeScript
import * as NodeExecuteFunctions from './NodeExecuteFunctions';
|
|
|
|
export * from './errors';
|
|
export * from './ActiveWorkflows';
|
|
export * from './BinaryData/BinaryData.service';
|
|
export * from './BinaryData/types';
|
|
export { Cipher } from './Cipher';
|
|
export * from './ClassLoader';
|
|
export * from './Constants';
|
|
export * from './Credentials';
|
|
export * from './DirectoryLoader';
|
|
export * from './Interfaces';
|
|
export { InstanceSettings } from './InstanceSettings';
|
|
export * from './NodeExecuteFunctions';
|
|
export * from './WorkflowExecute';
|
|
export { NodeExecuteFunctions };
|
|
export * from './errors';
|
|
export { ObjectStoreService } from './ObjectStore/ObjectStore.service.ee';
|
|
export { BinaryData } from './BinaryData/types';
|
|
export { isStoredMode as isValidNonDefaultMode } from './BinaryData/utils';
|