@databutton/firebase-types 1.99.3 → 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;
|
|
@@ -1073,11 +1077,7 @@ export interface IntegrationTemplateSummary {
|
|
|
1073
1077
|
managedBy: "riff" | "riff-custom" | "community";
|
|
1074
1078
|
apiVersion?: IntegrationApiVersion;
|
|
1075
1079
|
enabledForAccountIds?: string[];
|
|
1076
|
-
|
|
1077
|
-
* Riff-oauth are integrations that use our provided Riff OAuth flow
|
|
1078
|
-
* Any integration using a custom flow should have usage descriubed in the guide field
|
|
1079
|
-
*/
|
|
1080
|
-
authStrategy: "riff-oauth" | "oauth" | "api-key" | "custom";
|
|
1080
|
+
visibility?: "all" | "team" | "solo" | "hidden";
|
|
1081
1081
|
needsGatewayAppConnection?: boolean;
|
|
1082
1082
|
aliases?: {
|
|
1083
1083
|
name: string;
|
|
@@ -1227,6 +1227,10 @@ export interface Project {
|
|
|
1227
1227
|
createdFromProjectTemplateId?: string | null;
|
|
1228
1228
|
createdFromProjectPlanId?: string | null;
|
|
1229
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;
|
|
1230
1234
|
migratedFromDatabutton?: boolean;
|
|
1231
1235
|
migrationFromDatabutton?: "started" | "complete" | "failed";
|
|
1232
1236
|
startingPrompt?: string | null;
|