@databutton/firebase-types 1.39.12 → 1.40.1
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.
|
@@ -304,9 +304,9 @@ export interface Schedule {
|
|
|
304
304
|
id?: string;
|
|
305
305
|
scheduleForm?: "Weekly" | "Custom";
|
|
306
306
|
}
|
|
307
|
-
export interface
|
|
308
|
-
|
|
309
|
-
|
|
307
|
+
export interface Property {
|
|
308
|
+
name: string;
|
|
309
|
+
dtype: string;
|
|
310
310
|
}
|
|
311
311
|
export interface Datafile {
|
|
312
312
|
name?: string | null;
|
|
@@ -335,12 +335,13 @@ export interface Dataframe {
|
|
|
335
335
|
href: string;
|
|
336
336
|
lastUpdatedAtMillis: number;
|
|
337
337
|
md5: string;
|
|
338
|
-
numberOfProperties: number;
|
|
339
|
-
numberOfRows: number;
|
|
340
338
|
size: string;
|
|
341
339
|
sizeInMb: string;
|
|
342
340
|
markedForDeletionAt?: Timestamp | null;
|
|
343
341
|
markedForDeletionBy?: PerformedBy | null;
|
|
342
|
+
numberOfProperties: number;
|
|
343
|
+
numberOfRows: number;
|
|
344
|
+
properties?: Property[] | null;
|
|
344
345
|
}
|
|
345
346
|
export interface Viewer {
|
|
346
347
|
userId: string | null;
|
|
@@ -651,6 +652,7 @@ export type Build = {
|
|
|
651
652
|
image?: string;
|
|
652
653
|
eventRef?: string | null;
|
|
653
654
|
triggeredByRequirementsRef?: string | null;
|
|
655
|
+
workspaceVersion?: string | null;
|
|
654
656
|
};
|
|
655
657
|
type WithDocRef<T> = T & {
|
|
656
658
|
id: string;
|