@databutton/firebase-types 1.1.1 → 1.2.0

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.
@@ -94,6 +94,8 @@ export interface Uploading {
94
94
  contentShape: ContentShape | null;
95
95
  }
96
96
  export interface Datafile {
97
+ name?: string | null;
98
+ slug?: string | null;
97
99
  createdBy: PerformedBy;
98
100
  lastUpdatedBy: PerformedBy;
99
101
  blobKey: string;
@@ -204,6 +206,8 @@ export interface Project {
204
206
  export interface Requirements {
205
207
  createdBy: PerformedBy;
206
208
  prevRequirementsId: string | null;
209
+ installedAt: Timestamp | null;
210
+ logs: string | null;
207
211
  requirementsTxt: string;
208
212
  requirementsLock: string | null;
209
213
  }
@@ -220,7 +224,7 @@ export interface ProjectEvent {
220
224
  name: string;
221
225
  } | null;
222
226
  relatedTo: {
223
- title: string;
227
+ title: string | null;
224
228
  ref: string;
225
229
  } | null;
226
230
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.1.1",
3
+ "version": "1.2.0",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/types/published/index.d.ts",
6
6
  "files": [
@@ -51,6 +51,7 @@
51
51
  "firebase-functions": "3.24.1",
52
52
  "intercom-client": "3.1.5",
53
53
  "lodash": "4.17.21",
54
+ "nanoid": "4.0.0",
54
55
  "uuid": "8.3.2"
55
56
  },
56
57
  "devDependencies": {
@@ -73,10 +74,10 @@
73
74
  "firebase-functions-test": "2.4.0",
74
75
  "firebase-tools": "11.15.0",
75
76
  "jest": "28.1.3",
77
+ "semantic-release": "19.0.5",
76
78
  "ts-jest": "28.0.8",
77
79
  "ts-node": "10.9.1",
78
- "typescript": "4.8.4",
79
- "semantic-release": "19.0.5"
80
+ "typescript": "4.8.4"
80
81
  },
81
82
  "repository": {
82
83
  "type": "git",