@spotlightjs/overlay 4.0.0 → 4.1.0
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/dist/App.d.ts +1 -2
- package/dist/index.d.ts +0 -1
- package/dist/lib/serverTimingMeta.d.ts +1 -0
- package/dist/sentry-spotlight.iife.js +63 -63
- package/dist/sentry-spotlight.iife.js.map +1 -1
- package/dist/sentry-spotlight.js +6105 -6084
- package/dist/sentry-spotlight.js.map +1 -1
- package/dist/sentry-spotlight.umd.cjs +62 -62
- package/dist/sentry-spotlight.umd.cjs.map +1 -1
- package/dist/telemetry/components/TelemetrySidebar.d.ts +1 -2
- package/dist/telemetry/components/TelemetryView.d.ts +1 -2
- package/dist/telemetry/components/insights/envelopes/Attachment.d.ts +5 -0
- package/dist/telemetry/constants/sentry.d.ts +1 -0
- package/dist/telemetry/index.d.ts +1 -2
- package/package.json +2 -2
|
@@ -2,7 +2,6 @@ interface TelemetrySidebarProps {
|
|
|
2
2
|
errorCount: number;
|
|
3
3
|
traceCount: number;
|
|
4
4
|
isOnline: boolean;
|
|
5
|
-
showClearEventsButton: boolean;
|
|
6
5
|
}
|
|
7
|
-
export default function TelemetrySidebar({ errorCount, traceCount, isOnline
|
|
6
|
+
export default function TelemetrySidebar({ errorCount, traceCount, isOnline }: TelemetrySidebarProps): import("react/jsx-runtime").JSX.Element;
|
|
8
7
|
export {};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
export default function TelemetryView({ isOnline,
|
|
1
|
+
export default function TelemetryView({ isOnline, contextId, }: {
|
|
2
2
|
isOnline: boolean;
|
|
3
|
-
showClearEventsButton: boolean;
|
|
4
3
|
contextId: string;
|
|
5
4
|
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,4 +2,5 @@ export declare const ERROR_EVENT_TYPES: Set<string>;
|
|
|
2
2
|
export declare const TRACE_EVENT_TYPES: Set<string>;
|
|
3
3
|
export declare const PROFILE_EVENT_TYPES: Set<string>;
|
|
4
4
|
export declare const LOG_EVENT_TYPES: Set<string>;
|
|
5
|
+
export declare const ATTACHMENT_EVENT_TYPES: Set<string>;
|
|
5
6
|
export declare const SUPPORTED_EVENT_TYPES: Set<string>;
|
|
@@ -9,7 +9,6 @@ export declare function setSidecarUrlInStore(url: string): void;
|
|
|
9
9
|
export declare function processEnvelope(rawEvent: string | Envelope): Envelope;
|
|
10
10
|
type TelemetryRouteProps = {
|
|
11
11
|
sidecarUrl: string;
|
|
12
|
-
showClearEventsButton: boolean;
|
|
13
12
|
};
|
|
14
|
-
export declare function Telemetry({ sidecarUrl
|
|
13
|
+
export declare function Telemetry({ sidecarUrl }: TelemetryRouteProps): import("react/jsx-runtime").JSX.Element;
|
|
15
14
|
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spotlightjs/overlay",
|
|
3
3
|
"description": "The overlay of Spotlight to add debug interface to your web app.",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.1.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"files": [
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"vite-plugin-svgr": "^3.3.0",
|
|
62
62
|
"vitest": "^0.34.6",
|
|
63
63
|
"zustand": "^5.0.3",
|
|
64
|
-
"@spotlightjs/sidecar": "2.
|
|
64
|
+
"@spotlightjs/sidecar": "2.1.0",
|
|
65
65
|
"@spotlightjs/tsconfig": "2.0.0"
|
|
66
66
|
},
|
|
67
67
|
"volta": {
|