@databutton/firebase-types 1.109.1 → 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.
|
@@ -664,6 +664,10 @@ export interface StaticAsset {
|
|
|
664
664
|
size: string;
|
|
665
665
|
name?: string;
|
|
666
666
|
}
|
|
667
|
+
export interface PlanTask {
|
|
668
|
+
title: string;
|
|
669
|
+
description: string;
|
|
670
|
+
}
|
|
667
671
|
export type Task = {
|
|
668
672
|
createdBy: PerformedBy;
|
|
669
673
|
updatedBy: PerformedBy;
|
|
@@ -2285,6 +2289,7 @@ export interface ProjectPlan {
|
|
|
2285
2289
|
title: string;
|
|
2286
2290
|
description: string;
|
|
2287
2291
|
features: string[];
|
|
2292
|
+
tasks?: PlanTask[];
|
|
2288
2293
|
/**
|
|
2289
2294
|
* Hidden instructions that we can attach to featured project plans to guide the agent on how to use the project plan.
|
|
2290
2295
|
*/
|