@databutton/firebase-types 1.69.105 → 1.69.106
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.
|
@@ -298,6 +298,20 @@ export interface UiFile {
|
|
|
298
298
|
markedForDeletionBy: PerformedBy | null;
|
|
299
299
|
codeBlockRef: string;
|
|
300
300
|
}
|
|
301
|
+
export interface StaticAsset {
|
|
302
|
+
createdBy?: PerformedBy;
|
|
303
|
+
lastUpdatedBy?: PerformedBy;
|
|
304
|
+
markedForDeletionAt?: Timestamp | null;
|
|
305
|
+
markedForDeletionBy?: PerformedBy | null;
|
|
306
|
+
contentType?: string;
|
|
307
|
+
blobGeneration?: string;
|
|
308
|
+
etag: string;
|
|
309
|
+
md5: string;
|
|
310
|
+
size: string;
|
|
311
|
+
href: string;
|
|
312
|
+
name?: string | null;
|
|
313
|
+
slug?: string | null;
|
|
314
|
+
}
|
|
301
315
|
export declare enum StepState {
|
|
302
316
|
TODO = "todo",
|
|
303
317
|
IN_PROGRESS = "in-progress",
|