@databutton/firebase-types 1.69.84 → 1.69.85

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.
@@ -636,11 +636,18 @@ export interface ProjectGuidelines {
636
636
  */
637
637
  generatedMarkdown?: string;
638
638
  }
639
+ export declare enum ProjectExtension {
640
+ SHADCN = "shadcn"
641
+ }
639
642
  export interface Project {
640
643
  createdAt: Timestamp;
641
644
  createdBy?: PerformedBy;
642
645
  createdFromProjectTemplateId?: string | null;
643
646
  variant?: "beyond-streamlit" | "streamlit";
647
+ extensions?: {
648
+ name: ProjectExtension;
649
+ version: string;
650
+ }[];
644
651
  buildingStage?: ProjectBuildStage;
645
652
  lifeStage: ProjectLifeStage;
646
653
  lifeStageUpdatedBy: PerformedBy;
@@ -39,4 +39,8 @@ export var ProjectBuildStage;
39
39
  ProjectBuildStage["IDEATE"] = "ideate";
40
40
  ProjectBuildStage["BUILD"] = "build";
41
41
  })(ProjectBuildStage = ProjectBuildStage || (ProjectBuildStage = {}));
42
+ export var ProjectExtension;
43
+ (function (ProjectExtension) {
44
+ ProjectExtension["SHADCN"] = "shadcn";
45
+ })(ProjectExtension = ProjectExtension || (ProjectExtension = {}));
42
46
  //# sourceMappingURL=persisted.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.69.84",
3
+ "version": "1.69.85",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {