@databutton/firebase-types 1.12.58 → 1.12.60
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.
|
@@ -226,6 +226,7 @@ export interface DbtnControlledRequirementsConfig {
|
|
|
226
226
|
}
|
|
227
227
|
export interface Project {
|
|
228
228
|
createdAt: Timestamp;
|
|
229
|
+
createdFromProjectTemplateId?: string | null;
|
|
229
230
|
/**
|
|
230
231
|
* @deprecated No longer in use
|
|
231
232
|
*/
|
|
@@ -256,6 +257,7 @@ export interface Project {
|
|
|
256
257
|
}
|
|
257
258
|
export interface ProjectTemplate {
|
|
258
259
|
createdBy: PerformedBy;
|
|
260
|
+
lastUpdatedBy: PerformedBy;
|
|
259
261
|
basedOnProjectId: string;
|
|
260
262
|
name: string;
|
|
261
263
|
description: string | null;
|
|
@@ -4,3 +4,9 @@ export type DeleteApp = Pick<App, "markedForDeletionAt" | "markedForDeletionBy">
|
|
|
4
4
|
export type DeleteProject = Pick<Project, "markedForDeletionAt" | "markedForDeletionBy">;
|
|
5
5
|
export type DeleteDataframe = Pick<Dataframe, "markedForDeletionAt" | "markedForDeletionBy">;
|
|
6
6
|
export type DeleteDatafile = Pick<Datafile, "markedForDeletionAt" | "markedForDeletionBy">;
|
|
7
|
+
export type CreateOrUpdateProjectTemplateRequest = {
|
|
8
|
+
projectId: string;
|
|
9
|
+
projectTemplateId: string | null;
|
|
10
|
+
name: string;
|
|
11
|
+
description: string;
|
|
12
|
+
};
|