@databutton/firebase-types 1.37.11 → 1.37.13
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.
|
@@ -23,6 +23,11 @@ export interface ProjectEventsReadMap {
|
|
|
23
23
|
}
|
|
24
24
|
export interface Profile {
|
|
25
25
|
displayName: string;
|
|
26
|
+
jobTitle?: string;
|
|
27
|
+
companyName?: string;
|
|
28
|
+
githubUsername?: string;
|
|
29
|
+
linkedInUrl?: string;
|
|
30
|
+
profileCardBackgroundSrc?: string;
|
|
26
31
|
/**
|
|
27
32
|
* Timestamp when the profile was created
|
|
28
33
|
*/
|
|
@@ -746,6 +751,12 @@ export type Appbutler = {
|
|
|
746
751
|
regionCode?: string;
|
|
747
752
|
templateRef?: string;
|
|
748
753
|
projectId?: string;
|
|
754
|
+
serviceIsReady: boolean;
|
|
755
|
+
};
|
|
756
|
+
export type ProjectAppbutlers = {
|
|
757
|
+
region: string;
|
|
758
|
+
devxAppbutlerId: string;
|
|
759
|
+
prodxAppbutlerId: string;
|
|
749
760
|
};
|
|
750
761
|
export interface InitialDevxConfig {
|
|
751
762
|
activeVersion: string;
|