@databutton/firebase-types 1.86.1 → 1.86.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.
|
@@ -76,6 +76,7 @@ export interface Profile {
|
|
|
76
76
|
agentPersonality?: AgentPersonality;
|
|
77
77
|
preferences?: ProfilePreferences;
|
|
78
78
|
experimentalFeatures?: boolean;
|
|
79
|
+
pingSoundOptOut?: boolean;
|
|
79
80
|
publicUsername?: PublicUsername | null;
|
|
80
81
|
displayPreference?: "dark" | "system" | "light";
|
|
81
82
|
jobTitle?: string;
|
|
@@ -871,6 +872,8 @@ export interface IntegrationPackages {
|
|
|
871
872
|
};
|
|
872
873
|
}
|
|
873
874
|
export interface IntegrationScope {
|
|
875
|
+
/** Unique identifier for the scope, used to prevent drift when name is changed */
|
|
876
|
+
id: string;
|
|
874
877
|
/** Sections name e.g. Comntacts for Hubspot */
|
|
875
878
|
sectionName: string;
|
|
876
879
|
/** A list of scopes provided by the integration. e.g. "read:contacts", "write:contacts".
|