@databutton/firebase-types 1.69.98 → 1.69.100
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.
|
@@ -643,6 +643,41 @@ export type ProjectExtensions = {
|
|
|
643
643
|
name: ProjectExtension;
|
|
644
644
|
version: string;
|
|
645
645
|
}[];
|
|
646
|
+
export interface BaseTheme {
|
|
647
|
+
defaultFontFamily: string;
|
|
648
|
+
}
|
|
649
|
+
export interface ShadcnColors {
|
|
650
|
+
background: string;
|
|
651
|
+
foreground: string;
|
|
652
|
+
muted: string;
|
|
653
|
+
mutedForeground: string;
|
|
654
|
+
card: string;
|
|
655
|
+
cardForeground: string;
|
|
656
|
+
popover: string;
|
|
657
|
+
popoverForeground: string;
|
|
658
|
+
border: string;
|
|
659
|
+
input: string;
|
|
660
|
+
primary: string;
|
|
661
|
+
primaryForeground: string;
|
|
662
|
+
secondary: string;
|
|
663
|
+
secondaryForeground: string;
|
|
664
|
+
accent: string;
|
|
665
|
+
accentForeground: string;
|
|
666
|
+
destructive: string;
|
|
667
|
+
destructiveForeground: string;
|
|
668
|
+
}
|
|
669
|
+
export interface ShadcnTheme extends BaseTheme {
|
|
670
|
+
type: "shadcn";
|
|
671
|
+
colors: {
|
|
672
|
+
light: ShadcnColors;
|
|
673
|
+
dark: ShadcnColors;
|
|
674
|
+
};
|
|
675
|
+
radius: string;
|
|
676
|
+
}
|
|
677
|
+
export interface ChakraTheme extends BaseTheme {
|
|
678
|
+
type: "chakra";
|
|
679
|
+
}
|
|
680
|
+
export type ProjectTheme = ShadcnTheme | ChakraTheme;
|
|
646
681
|
export interface Project {
|
|
647
682
|
createdAt: Timestamp;
|
|
648
683
|
createdBy?: PerformedBy;
|
|
@@ -652,6 +687,7 @@ export interface Project {
|
|
|
652
687
|
buildingStage?: ProjectBuildStage;
|
|
653
688
|
lifeStage: ProjectLifeStage;
|
|
654
689
|
lifeStageUpdatedBy: PerformedBy;
|
|
690
|
+
theme?: ProjectTheme;
|
|
655
691
|
guidelines?: ProjectGuidelines;
|
|
656
692
|
aiGeneratedSummary?: string;
|
|
657
693
|
/**
|
|
@@ -1007,7 +1043,10 @@ export interface Thread {
|
|
|
1007
1043
|
context: ThreadContext;
|
|
1008
1044
|
description: string | null;
|
|
1009
1045
|
hasGeneratedDescription?: boolean;
|
|
1010
|
-
nextMessageSuggestions?:
|
|
1046
|
+
nextMessageSuggestions?: {
|
|
1047
|
+
suggestions: NextMessageSuggestion[];
|
|
1048
|
+
basedOnMessageId: string;
|
|
1049
|
+
};
|
|
1011
1050
|
}
|
|
1012
1051
|
export interface ContextBase {
|
|
1013
1052
|
contextKey: string;
|