@databutton/firebase-types 1.99.4 → 1.100.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.
@@ -69,6 +69,10 @@ export interface Account {
69
69
  * Account level custom instructions. Will be applied to system prompt in all projects created in this account.
70
70
  */
71
71
  customInstructions?: string;
72
+ /**
73
+ * Identifier for the special account wide project for knowledgebase
74
+ */
75
+ knowledgeBaseProjectId?: string;
72
76
  }
73
77
  interface AccountConfigBase {
74
78
  enabledBy: PerformedBy;
@@ -1223,6 +1227,10 @@ export interface Project {
1223
1227
  createdFromProjectTemplateId?: string | null;
1224
1228
  createdFromProjectPlanId?: string | null;
1225
1229
  variant: ProjectVariant;
1230
+ /**
1231
+ * Identifier for special projects that should be hidden from the user when in use for the knowledgebase feature
1232
+ */
1233
+ isAccountKnowledgeProject?: boolean;
1226
1234
  migratedFromDatabutton?: boolean;
1227
1235
  migrationFromDatabutton?: "started" | "complete" | "failed";
1228
1236
  startingPrompt?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.99.4",
3
+ "version": "1.100.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {