@databutton/firebase-types 1.73.6 → 1.73.7

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.
@@ -807,6 +807,19 @@ export type ThirdPartyService = {
807
807
  category: ThirdPartyServiceCategory.STORAGE;
808
808
  name: ThirdPartyStorageName;
809
809
  };
810
+ export interface AgentConfig {
811
+ customInstructions: string;
812
+ strictMode?: boolean | null;
813
+ toneOfVoice?: {
814
+ responseStyle?: string | null;
815
+ tone?: string | null;
816
+ personality?: string | null;
817
+ };
818
+ audience?: {
819
+ technicalLevel?: string | null;
820
+ preferredLanguage?: string | null;
821
+ };
822
+ }
810
823
  export interface Project {
811
824
  createdAt: Timestamp;
812
825
  createdBy?: PerformedBy;
@@ -820,10 +833,7 @@ export interface Project {
820
833
  idPrefix: string;
821
834
  lastTaskNumber: number;
822
835
  };
823
- agentConfig?: {
824
- customInstructions: string;
825
- strictMode?: boolean | null;
826
- };
836
+ agentConfig?: AgentConfig;
827
837
  /**
828
838
  * Select services during the project creation flow
829
839
  * Used for tools and prompts++
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.73.6",
3
+ "version": "1.73.7",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {