@databutton/firebase-types 1.69.96 → 1.69.98
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.
|
@@ -996,12 +996,18 @@ export type AdminRequirementsConfig = {
|
|
|
996
996
|
currentRef: string;
|
|
997
997
|
currentRequirements: Requirements;
|
|
998
998
|
};
|
|
999
|
+
export interface NextMessageSuggestion {
|
|
1000
|
+
icon: string;
|
|
1001
|
+
short: string;
|
|
1002
|
+
long: string;
|
|
1003
|
+
}
|
|
999
1004
|
export interface Thread {
|
|
1000
1005
|
startedBy: PerformedBy;
|
|
1001
1006
|
lastUpdate?: PerformedBy;
|
|
1002
1007
|
context: ThreadContext;
|
|
1003
1008
|
description: string | null;
|
|
1004
1009
|
hasGeneratedDescription?: boolean;
|
|
1010
|
+
nextMessageSuggestions?: NextMessageSuggestion[];
|
|
1005
1011
|
}
|
|
1006
1012
|
export interface ContextBase {
|
|
1007
1013
|
contextKey: string;
|