@databutton/firebase-types 1.12.58 → 1.12.59

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.
@@ -256,6 +256,7 @@ export interface Project {
256
256
  }
257
257
  export interface ProjectTemplate {
258
258
  createdBy: PerformedBy;
259
+ lastUpdatedBy: PerformedBy;
259
260
  basedOnProjectId: string;
260
261
  name: string;
261
262
  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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.12.58",
3
+ "version": "1.12.59",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {