@databutton/firebase-types 1.71.31 → 1.71.33

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.
@@ -714,6 +714,28 @@ export type ProjectExtensionConfig<T = object> = {
714
714
  version: string;
715
715
  config?: T;
716
716
  };
717
+ export interface FirebaseAuthExtensionConfig {
718
+ firebaseConfig: {
719
+ apiKey: string;
720
+ appId: string;
721
+ projectId: string;
722
+ authDomain: string;
723
+ storageBucket: string;
724
+ messagingSenderId: string;
725
+ };
726
+ signInOptions: {
727
+ google: boolean;
728
+ email: boolean;
729
+ facebook: boolean;
730
+ twitter: boolean;
731
+ emailAndPassword: boolean;
732
+ magicLink: boolean;
733
+ };
734
+ siteName: string;
735
+ signInSuccessUrl: string;
736
+ tosLink: string;
737
+ privacyPolicyLink: string;
738
+ }
717
739
  export type ProjectExtensions = ProjectExtensionConfig[];
718
740
  export interface BaseTheme {
719
741
  defaultFontFamily: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.71.31",
3
+ "version": "1.71.33",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {