@posiwise/common-services 0.2.11 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/sentry.service.d.ts
CHANGED
|
@@ -22,6 +22,12 @@ export declare class SentryErrorHandler implements ErrorHandler {
|
|
|
22
22
|
sentryInitialization(error: any, incomingError: any): void;
|
|
23
23
|
private logToSentry;
|
|
24
24
|
private scopeWithSentry;
|
|
25
|
+
/**
|
|
26
|
+
* Classifies the error type for proper Sentry tagging
|
|
27
|
+
* This prevents "unlabeled events" by ensuring all events have a classification
|
|
28
|
+
*/
|
|
29
|
+
private classifyError;
|
|
30
|
+
private isEdgeSyntheticEvent;
|
|
25
31
|
private handleNonStandardError;
|
|
26
32
|
private handleUnlabeledEvent;
|
|
27
33
|
private logToConsole;
|