@databutton/firebase-types 1.173.0 → 1.174.1
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.
|
@@ -1549,6 +1549,7 @@ export interface Project {
|
|
|
1549
1549
|
startingPointGeneratedBy?: PerformedBy | null;
|
|
1550
1550
|
extensions?: ProjectExtensions;
|
|
1551
1551
|
annotations?: Record<string, string>;
|
|
1552
|
+
devxBootActions?: Record<string, number> | null;
|
|
1552
1553
|
taskConfig?: {
|
|
1553
1554
|
idPrefix: string;
|
|
1554
1555
|
lastTaskNumber: number;
|
|
@@ -1576,7 +1577,13 @@ export interface Project {
|
|
|
1576
1577
|
* @deprecated No longer in use
|
|
1577
1578
|
*/
|
|
1578
1579
|
isPublic: boolean;
|
|
1579
|
-
|
|
1580
|
+
/**
|
|
1581
|
+
* The visibility of the project.
|
|
1582
|
+
* - public: not in use anymore - avoid using this
|
|
1583
|
+
* - private: the project is visible in the workspace for everyone that has access to the account
|
|
1584
|
+
* - hidden: the project is only visible to Riff internal users
|
|
1585
|
+
*/
|
|
1586
|
+
visibility: "public" | "private" | "hidden";
|
|
1580
1587
|
visibilityLastChangedBy: PerformedBy;
|
|
1581
1588
|
lastOpenedAt?: Timestamp;
|
|
1582
1589
|
lastMigratedAt?: Timestamp;
|