@databutton/firebase-types 1.95.4 → 1.95.5

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.
@@ -90,11 +90,15 @@ export interface PostHogConfig extends AccountConfigBase {
90
90
  * PostHog project ID for the account
91
91
  * This is the project ID from PostHog cloud/self-hosted instance
92
92
  */
93
- projectId: string;
93
+ posthogProjectId: string;
94
94
  /**
95
95
  * PostHog host URL (e.g., "https://eu.i.posthog.com")
96
96
  */
97
97
  host: string;
98
+ /**
99
+ * PostHog API token for the account
100
+ */
101
+ posthogKey: string;
98
102
  }
99
103
  export type ProjectPermissionName = "deploy";
100
104
  export interface Permission {
@@ -842,7 +846,8 @@ export interface FirebaseAuthExtensionConfig {
842
846
  privacyPolicyLink: string;
843
847
  }
844
848
  export interface PostHogExtensionConfig {
845
- projectId: string;
849
+ posthogKey: string;
850
+ apiPath: string;
846
851
  }
847
852
  export type ProjectExtensions = ProjectExtensionConfig[];
848
853
  export interface BaseTheme {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.95.4",
3
+ "version": "1.95.5",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {