@databutton/firebase-types 1.3.8 → 1.4.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.
|
@@ -89,30 +89,25 @@ export interface ContentShape {
|
|
|
89
89
|
numberOfRows: number;
|
|
90
90
|
numberOfProperties: number;
|
|
91
91
|
}
|
|
92
|
-
export interface Uploading {
|
|
93
|
-
uploadedBy: PerformedBy;
|
|
94
|
-
dataKey: string;
|
|
95
|
-
blobKey: string;
|
|
96
|
-
contentType: string;
|
|
97
|
-
contentShape: ContentShape | null;
|
|
98
|
-
}
|
|
99
92
|
export interface Datafile {
|
|
100
93
|
name?: string | null;
|
|
101
94
|
slug?: string | null;
|
|
102
95
|
createdBy: PerformedBy;
|
|
103
96
|
lastUpdatedBy: PerformedBy;
|
|
104
|
-
blobKey: string;
|
|
105
97
|
contentType: string;
|
|
106
98
|
href: string;
|
|
107
|
-
|
|
99
|
+
blobGeneration: string;
|
|
108
100
|
md5: string;
|
|
101
|
+
etag: string;
|
|
102
|
+
size: string;
|
|
103
|
+
sizeInMb: string;
|
|
109
104
|
markedForDeletionAt: Timestamp | null;
|
|
110
105
|
markedForDeletionBy: PerformedBy | null;
|
|
111
106
|
}
|
|
112
107
|
export interface Dataframe {
|
|
113
108
|
createdBy?: PerformedBy;
|
|
114
109
|
lastUpdatedBy?: PerformedBy;
|
|
115
|
-
|
|
110
|
+
blobGeneration?: string;
|
|
116
111
|
contentType?: string;
|
|
117
112
|
name?: string | null;
|
|
118
113
|
slug?: string | null;
|
|
@@ -214,6 +209,7 @@ export interface Requirements {
|
|
|
214
209
|
logs: string | null;
|
|
215
210
|
requirementsTxt: string;
|
|
216
211
|
requirementsLock: string | null;
|
|
212
|
+
requirementsHash: string | null;
|
|
217
213
|
}
|
|
218
214
|
export interface ProjectEvent {
|
|
219
215
|
status: "PENDING" | "FAILURE" | "IN_PROGRESS" | "SUCCESS";
|