@databutton/firebase-types 1.42.7 → 1.42.8

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.
@@ -421,7 +421,8 @@ export interface Project {
421
421
  createdAt: Timestamp;
422
422
  createdBy?: PerformedBy;
423
423
  createdFromProjectTemplateId?: string | null;
424
- lifeStage?: ProjectLifeStage;
424
+ lifeStage: ProjectLifeStage;
425
+ lifeStageUpdatedBy?: PerformedBy;
425
426
  lifeStageStartedAt?: Timestamp;
426
427
  /**
427
428
  * @deprecated No longer in use
@@ -28,6 +28,10 @@ export type WakeProjectRequest = {
28
28
  projectId: string;
29
29
  };
30
30
  export type WakeProjectResponse = {};
31
+ export type DeleteProjectRequest = {
32
+ projectId: string;
33
+ };
34
+ export type DeleteProjectResponse = {};
31
35
  export type MigrateViewsRequest = {
32
36
  projectId: string;
33
37
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.42.7",
3
+ "version": "1.42.8",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {