@databutton/firebase-types 1.95.7 → 1.95.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.
@@ -2156,8 +2156,8 @@ export interface Commit {
2156
2156
  parentIds: string[];
2157
2157
  versionRefs: string[];
2158
2158
  commitRequestId?: string;
2159
- taskId?: string;
2160
- userId?: string;
2159
+ taskId?: string | null;
2160
+ userId?: string | null;
2161
2161
  }
2162
2162
  export interface Branch {
2163
2163
  createdBy: PerformedBy;
@@ -2205,7 +2205,7 @@ export interface NeonConfig {
2205
2205
  export interface Database<P, C> {
2206
2206
  createdBy: PerformedBy;
2207
2207
  updatedBy: PerformedBy;
2208
- markedForDeletionAt: Timestamp | null;
2208
+ markedForDeletionBy: PerformedBy | null;
2209
2209
  provider: P;
2210
2210
  config: C;
2211
2211
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.95.7",
3
+ "version": "1.95.8",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {