@databutton/firebase-types 1.103.0 → 1.104.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.
|
@@ -471,4 +471,14 @@ export type CreateKnowledgeBaseProjectResponse = {
|
|
|
471
471
|
errorCode: string;
|
|
472
472
|
errorMessage?: string;
|
|
473
473
|
};
|
|
474
|
+
export type LinkKnowledgeBaseIntegrationsRequest = {
|
|
475
|
+
accountId: string;
|
|
476
|
+
};
|
|
477
|
+
export type LinkKnowledgeBaseIntegrationsResponse = {
|
|
478
|
+
success: true;
|
|
479
|
+
} | {
|
|
480
|
+
success: false;
|
|
481
|
+
errorCode: string;
|
|
482
|
+
errorMessage?: string;
|
|
483
|
+
};
|
|
474
484
|
export {};
|