@databutton/firebase-types 1.105.1 → 1.106.0

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.
@@ -35,6 +35,20 @@ export interface PublicUsername {
35
35
  slug: string;
36
36
  claimedAt: Timestamp;
37
37
  }
38
+ export type AccountIndustry = "agriculture" | "automotive" | "construction" | "education" | "energy" | "financial-services" | "government" | "healthcare" | "hospitality" | "it-and-software" | "legal" | "logistics-and-transportation" | "manufacturing" | "media-and-entertainment" | "non-profit" | "professional-services" | "real-estate" | "retail" | "telecommunications" | "other";
39
+ export type AccountBusinessModel = "b2b" | "b2c" | "b2b2c" | "other";
40
+ export type AccountEmployeeCount = "1-10" | "11-50" | "51-200" | "201-1000" | "1001-5000" | "5000+";
41
+ export interface AccountCompanyMetadata {
42
+ logoUrl: string | null;
43
+ website: string | null;
44
+ description: string | null;
45
+ industry: AccountIndustry | null;
46
+ businessModel: AccountBusinessModel | null;
47
+ headquartersCountry: string | null;
48
+ operatingRegions: string[] | null;
49
+ employeeCount: AccountEmployeeCount | null;
50
+ yearFounded: number | null;
51
+ }
38
52
  export interface Account {
39
53
  createdBy: PerformedBy;
40
54
  lastUpdatedBy: PerformedBy;
@@ -69,6 +83,11 @@ export interface Account {
69
83
  * Account level custom instructions. Will be applied to system prompt in all projects created in this account.
70
84
  */
71
85
  customInstructions?: string;
86
+ /**
87
+ * Optional company metadata to provide context about the customer organization.
88
+ * Surfaced to agents across all apps in the account.
89
+ */
90
+ companyMetadata?: AccountCompanyMetadata;
72
91
  /**
73
92
  * Identifier for the special account wide project for knowledgebase
74
93
  * @deprecated This field is being deprecated in favor of userAccountLevelProjectIds with a special key for the knowledge base project, to allow multiple special projects per account in the future
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.105.1",
3
+ "version": "1.106.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {