@databutton/firebase-types 1.73.6 → 1.73.8
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.
|
@@ -37,6 +37,7 @@ export interface PublicUsername {
|
|
|
37
37
|
export type ToSVersion = "2024-02-13";
|
|
38
38
|
export interface Profile {
|
|
39
39
|
displayName: string;
|
|
40
|
+
agentPersonality?: AgentPersonality;
|
|
40
41
|
publicUsername?: PublicUsername;
|
|
41
42
|
displayPreference?: "dark" | "system" | "light";
|
|
42
43
|
jobTitle?: string;
|
|
@@ -807,6 +808,21 @@ export type ThirdPartyService = {
|
|
|
807
808
|
category: ThirdPartyServiceCategory.STORAGE;
|
|
808
809
|
name: ThirdPartyStorageName;
|
|
809
810
|
};
|
|
811
|
+
export interface AgentConfig {
|
|
812
|
+
customInstructions: string;
|
|
813
|
+
strictMode?: boolean | null;
|
|
814
|
+
}
|
|
815
|
+
export interface AgentPersonality {
|
|
816
|
+
toneOfVoice?: {
|
|
817
|
+
responseStyle?: string | null;
|
|
818
|
+
tone?: string | null;
|
|
819
|
+
personality?: string | null;
|
|
820
|
+
};
|
|
821
|
+
audience?: {
|
|
822
|
+
technicalLevel?: string | null;
|
|
823
|
+
preferredLanguage?: string | null;
|
|
824
|
+
};
|
|
825
|
+
}
|
|
810
826
|
export interface Project {
|
|
811
827
|
createdAt: Timestamp;
|
|
812
828
|
createdBy?: PerformedBy;
|
|
@@ -820,10 +836,7 @@ export interface Project {
|
|
|
820
836
|
idPrefix: string;
|
|
821
837
|
lastTaskNumber: number;
|
|
822
838
|
};
|
|
823
|
-
agentConfig?:
|
|
824
|
-
customInstructions: string;
|
|
825
|
-
strictMode?: boolean | null;
|
|
826
|
-
};
|
|
839
|
+
agentConfig?: AgentConfig;
|
|
827
840
|
/**
|
|
828
841
|
* Select services during the project creation flow
|
|
829
842
|
* Used for tools and prompts++
|