@databutton/firebase-types 1.13.17 → 1.13.19
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.
|
@@ -14,7 +14,10 @@ export interface PerformedByUser extends PerformerBase {
|
|
|
14
14
|
export interface PerformedBySystem extends PerformerBase {
|
|
15
15
|
type: "system";
|
|
16
16
|
}
|
|
17
|
-
export
|
|
17
|
+
export interface PerformedByAnonymous extends PerformerBase {
|
|
18
|
+
type: "anonymous";
|
|
19
|
+
}
|
|
20
|
+
export type PerformedBy = PerformedByUser | PerformedBySystem | PerformedByAnonymous;
|
|
18
21
|
export interface ProjectEventsReadMap {
|
|
19
22
|
[projectId: string]: Timestamp;
|
|
20
23
|
}
|
|
@@ -270,6 +273,7 @@ export interface DbtnControlledRequirementsConfig {
|
|
|
270
273
|
}
|
|
271
274
|
export interface Project {
|
|
272
275
|
createdAt: Timestamp;
|
|
276
|
+
createdBy?: PerformedBy;
|
|
273
277
|
createdFromProjectTemplateId?: string | null;
|
|
274
278
|
/**
|
|
275
279
|
* @deprecated No longer in use
|