@spotlightjs/overlay 2.5.0 → 2.5.2
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/{index-4373983e.js → index-9c22eb7e.js} +4184 -4162
- package/dist/index-9c22eb7e.js.map +1 -0
- package/dist/integrations/console/index.d.ts +8 -1
- package/dist/lib/db.d.ts +1 -0
- package/dist/lib/logger.d.ts +1 -0
- package/dist/{main-6b16141c.js → main-077714b2.js} +301 -299
- package/dist/{main-6b16141c.js.map → main-077714b2.js.map} +1 -1
- package/dist/sentry-spotlight.iife.js +86 -86
- package/dist/sentry-spotlight.iife.js.map +1 -1
- package/dist/sentry-spotlight.js +22 -20
- package/dist/sentry-spotlight.js.map +1 -1
- package/dist/types.d.ts +1 -0
- package/package.json +17 -17
- package/dist/index-4373983e.js.map +0 -1
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import ConsoleTab from './console-tab';
|
|
2
|
-
import { ConsoleMessage } from './types';
|
|
2
|
+
import type { ConsoleMessage } from './types';
|
|
3
|
+
/**
|
|
4
|
+
* This integration is meant to run on the same page where
|
|
5
|
+
* the Spotlight UI is running. For standalone UI cases such
|
|
6
|
+
* as the Electron app, we should publish a separate version
|
|
7
|
+
* that takes in the sidecar URL.
|
|
8
|
+
* @returns Integration Console integration for Spotlight
|
|
9
|
+
*/
|
|
3
10
|
export default function consoleIntegration(): {
|
|
4
11
|
name: string;
|
|
5
12
|
forwardedContentType: string[];
|
package/dist/lib/db.d.ts
CHANGED
package/dist/lib/logger.d.ts
CHANGED