@adventurelabs/scout-core 1.0.1 → 1.0.3

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.d.ts CHANGED
@@ -26,7 +26,7 @@ export * from "./helpers/web";
26
26
  export * from "./helpers/zones";
27
27
  export * from "./hooks/useScoutDbListener";
28
28
  export * from "./hooks/useScoutRefresh";
29
- export * from "./providers/ScoutRefreshProvider";
29
+ export * from "./providers";
30
30
  export * from "./store/scout";
31
31
  export * from "./store/hooks";
32
32
  export * from "./supabase/client";
package/dist/index.js CHANGED
@@ -31,7 +31,7 @@ export * from "./helpers/zones";
31
31
  export * from "./hooks/useScoutDbListener";
32
32
  export * from "./hooks/useScoutRefresh";
33
33
  // Providers
34
- export * from "./providers/ScoutRefreshProvider";
34
+ export * from "./providers";
35
35
  // Store
36
36
  export * from "./store/scout";
37
37
  export * from "./store/hooks";
@@ -1 +1 @@
1
- export default function ScoutRefreshProvider(): null;
1
+ export declare function ScoutRefreshProvider(): null;
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import { useScoutRefresh } from "../hooks/useScoutRefresh";
3
3
  import { useScoutDbListener } from "../hooks/useScoutDbListener";
4
- export default function ScoutRefreshProvider() {
4
+ export function ScoutRefreshProvider() {
5
5
  useScoutDbListener();
6
6
  useScoutRefresh();
7
7
  return null; // This component doesn't render anything, it just provides the refresh functionality
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adventurelabs/scout-core",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Core utilities and helpers for Adventure Labs Scout applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",