@databutton/firebase-types 1.0.14 → 1.0.15
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.
|
@@ -25,6 +25,7 @@ export interface Profile {
|
|
|
25
25
|
admin?: boolean;
|
|
26
26
|
referredAsCollaboratorBy?: PerformedBy | null;
|
|
27
27
|
referredAsViewerBy?: PerformedBy | null;
|
|
28
|
+
readProjectEventsAt?: Timestamp | null;
|
|
28
29
|
}
|
|
29
30
|
export interface App {
|
|
30
31
|
name: string;
|
|
@@ -175,10 +176,12 @@ export interface Requirements {
|
|
|
175
176
|
requirementsLock: string | null;
|
|
176
177
|
}
|
|
177
178
|
export interface ProjectEvent {
|
|
178
|
-
status: "FAILURE" | "IN_PROGRESS" | "SUCCESS";
|
|
179
|
-
message: string;
|
|
180
|
-
read: boolean;
|
|
181
|
-
link: string | null;
|
|
179
|
+
status: "PENDING" | "FAILURE" | "IN_PROGRESS" | "SUCCESS";
|
|
182
180
|
createdBy: PerformedBy;
|
|
181
|
+
lastUpdatedBy: PerformedBy;
|
|
182
|
+
title: string;
|
|
183
|
+
description: string | null;
|
|
184
|
+
shortUrl: string | null;
|
|
185
|
+
relatedToRef: string | null;
|
|
183
186
|
}
|
|
184
187
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App, Dataframe, Job, Project } from "./persisted";
|
|
2
2
|
export declare type DeleteJob = Pick<Job, "markedForDeletionAt" | "markedForDeletionBy">;
|
|
3
3
|
export declare type DeleteApp = Pick<App, "markedForDeletionAt" | "markedForDeletionBy">;
|
|
4
4
|
export declare type DeleteProject = Pick<Project, "markedForDeletionAt" | "markedForDeletionBy">;
|