@databutton/firebase-types 1.95.7 → 1.95.9
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.
|
@@ -1299,7 +1299,16 @@ export interface Project {
|
|
|
1299
1299
|
lastMigratedAt?: Timestamp;
|
|
1300
1300
|
markedForDeletionAt: Timestamp | null;
|
|
1301
1301
|
markedForDeletionBy?: PerformedBy | null;
|
|
1302
|
+
/**
|
|
1303
|
+
* If owner of app has ejected from Riff
|
|
1304
|
+
*/
|
|
1305
|
+
ejectedBy?: PerformedBy | null;
|
|
1302
1306
|
members: string[];
|
|
1307
|
+
/**
|
|
1308
|
+
* List of user IDs that are maintainers of the project.
|
|
1309
|
+
* Used in accounts to indicate who is responsible for the project, and thus recipient of important notifications or similar.
|
|
1310
|
+
*/
|
|
1311
|
+
maintainers?: string[];
|
|
1303
1312
|
permittedUsers?: Record<ProjectPermissionName, string[]>;
|
|
1304
1313
|
name: string;
|
|
1305
1314
|
tags?: string[];
|
|
@@ -2156,8 +2165,8 @@ export interface Commit {
|
|
|
2156
2165
|
parentIds: string[];
|
|
2157
2166
|
versionRefs: string[];
|
|
2158
2167
|
commitRequestId?: string;
|
|
2159
|
-
taskId?: string;
|
|
2160
|
-
userId?: string;
|
|
2168
|
+
taskId?: string | null;
|
|
2169
|
+
userId?: string | null;
|
|
2161
2170
|
}
|
|
2162
2171
|
export interface Branch {
|
|
2163
2172
|
createdBy: PerformedBy;
|
|
@@ -2205,7 +2214,7 @@ export interface NeonConfig {
|
|
|
2205
2214
|
export interface Database<P, C> {
|
|
2206
2215
|
createdBy: PerformedBy;
|
|
2207
2216
|
updatedBy: PerformedBy;
|
|
2208
|
-
|
|
2217
|
+
markedForDeletionBy: PerformedBy | null;
|
|
2209
2218
|
provider: P;
|
|
2210
2219
|
config: C;
|
|
2211
2220
|
}
|