@databutton/firebase-types 1.84.6 → 1.84.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.
@@ -68,9 +68,13 @@ export interface AccountMemberRole {
68
68
  createdBy: PerformedBy;
69
69
  }
70
70
  export type ToSVersion = "2024-02-13";
71
+ export interface ProfilePreferences {
72
+ chatStyle: "clean" | "detailed";
73
+ }
71
74
  export interface Profile {
72
75
  displayName: string;
73
76
  agentPersonality?: AgentPersonality;
77
+ preferences?: ProfilePreferences;
74
78
  experimentalFeatures?: boolean;
75
79
  publicUsername?: PublicUsername | null;
76
80
  displayPreference?: "dark" | "system" | "light";
@@ -788,6 +792,9 @@ export type AgentStatus = {
788
792
  reason: "insufficient-funds" | "other";
789
793
  };
790
794
  export type ModelString = `openai/${string}` | `anthropic/${string}` | `google/${string}`;
795
+ /**
796
+ * This should probably have been called AgentPreferences
797
+ */
791
798
  export interface AgentPersonality {
792
799
  mainModel?: ModelString;
793
800
  modelAtSignUp?: ModelString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.84.6",
3
+ "version": "1.84.8",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {