@posthog/nuxt 1.7.77 → 1.7.78
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/module.d.mts +8 -0
- package/dist/module.json +1 -1
- package/package.json +5 -5
package/dist/module.d.mts
CHANGED
|
@@ -29,6 +29,14 @@ interface ModuleOptions {
|
|
|
29
29
|
serverConfig?: PostHogServerConfig;
|
|
30
30
|
sourcemaps: SourcemapsConfig | undefined;
|
|
31
31
|
}
|
|
32
|
+
declare module '@nuxt/schema' {
|
|
33
|
+
interface NuxtConfig {
|
|
34
|
+
posthogConfig?: Partial<ModuleOptions>;
|
|
35
|
+
}
|
|
36
|
+
interface NuxtOptions {
|
|
37
|
+
posthogConfig?: ModuleOptions;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
32
40
|
interface PostHogCommon {
|
|
33
41
|
publicKey: string;
|
|
34
42
|
host: string;
|
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@posthog/nuxt",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.78",
|
|
4
4
|
"bugs": {
|
|
5
5
|
"url": "https://github.com/PostHog/posthog-js/issues"
|
|
6
6
|
},
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@posthog/cli": "~0.7.21",
|
|
30
30
|
"@nuxt/kit": ">=3.7.0",
|
|
31
|
-
"posthog-node": "^5.
|
|
32
|
-
"posthog
|
|
33
|
-
"@posthog/
|
|
34
|
-
"
|
|
31
|
+
"posthog-node": "^5.39.0",
|
|
32
|
+
"@posthog/core": "^1.39.1",
|
|
33
|
+
"@posthog/plugin-utils": "^1.1.2",
|
|
34
|
+
"posthog-js": "^1.396.2"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "^20.0.0",
|