@databutton/firebase-types 1.109.0 → 1.110.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.
|
@@ -37,6 +37,8 @@ export interface PublicUsername {
|
|
|
37
37
|
}
|
|
38
38
|
export interface AccountBrandTheme {
|
|
39
39
|
logoUrl: string | null;
|
|
40
|
+
favIconLight?: string | null;
|
|
41
|
+
favIconDark?: string | null;
|
|
40
42
|
primaryColor: string | null;
|
|
41
43
|
secondaryColor: string | null;
|
|
42
44
|
accentColor: string | null;
|
|
@@ -662,6 +664,10 @@ export interface StaticAsset {
|
|
|
662
664
|
size: string;
|
|
663
665
|
name?: string;
|
|
664
666
|
}
|
|
667
|
+
export interface PlanTask {
|
|
668
|
+
title: string;
|
|
669
|
+
description: string;
|
|
670
|
+
}
|
|
665
671
|
export type Task = {
|
|
666
672
|
createdBy: PerformedBy;
|
|
667
673
|
updatedBy: PerformedBy;
|
|
@@ -2283,6 +2289,7 @@ export interface ProjectPlan {
|
|
|
2283
2289
|
title: string;
|
|
2284
2290
|
description: string;
|
|
2285
2291
|
features: string[];
|
|
2292
|
+
tasks?: PlanTask[];
|
|
2286
2293
|
/**
|
|
2287
2294
|
* Hidden instructions that we can attach to featured project plans to guide the agent on how to use the project plan.
|
|
2288
2295
|
*/
|