@databutton/firebase-types 1.0.13 → 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.
@@ -23,6 +23,9 @@ export interface Profile {
23
23
  earlyAccessChangedAt?: Timestamp;
24
24
  enabledFeatures?: string[];
25
25
  admin?: boolean;
26
+ referredAsCollaboratorBy?: PerformedBy | null;
27
+ referredAsViewerBy?: PerformedBy | null;
28
+ readProjectEventsAt?: Timestamp | null;
26
29
  }
27
30
  export interface App {
28
31
  name: string;
@@ -173,10 +176,12 @@ export interface Requirements {
173
176
  requirementsLock: string | null;
174
177
  }
175
178
  export interface ProjectEvent {
176
- status: "FAILURE" | "IN_PROGRESS" | "SUCCESS";
177
- message: string;
178
- read: boolean;
179
- link: string | null;
179
+ status: "PENDING" | "FAILURE" | "IN_PROGRESS" | "SUCCESS";
180
180
  createdBy: PerformedBy;
181
+ lastUpdatedBy: PerformedBy;
182
+ title: string;
183
+ description: string | null;
184
+ shortUrl: string | null;
185
+ relatedToRef: string | null;
181
186
  }
182
187
  export {};
@@ -1,4 +1,4 @@
1
- import { Job, App, Project, Dataframe } from "./persisted";
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">;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/types/published/index.d.ts",
6
6
  "files": [
@@ -71,7 +71,7 @@
71
71
  "eslint-plugin-import": "2.26.0",
72
72
  "eslint-plugin-jest": "27.0.4",
73
73
  "firebase-functions-test": "2.4.0",
74
- "firebase-tools": "11.10.0",
74
+ "firebase-tools": "11.13.0",
75
75
  "jest": "28.1.3",
76
76
  "ts-jest": "28.0.8",
77
77
  "ts-node": "10.9.1",