@databutton/firebase-types 1.78.149 → 1.78.150
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Timestamp } from "firebase/firestore";
|
|
2
|
-
import type { Datafile, Dataframe, Job, PerformedBy, Project, ProjectTemplate } from "./persisted.js";
|
|
3
2
|
import type { RunMigrationsResponse } from "../db-api.js";
|
|
3
|
+
import type { Datafile, Dataframe, Job, PerformedBy, Project, ProjectTemplate } from "./persisted.js";
|
|
4
4
|
export type DeleteJob = Pick<Job, "markedForDeletionAt" | "markedForDeletionBy">;
|
|
5
5
|
export type DeleteProject = Pick<Project, "markedForDeletionAt" | "markedForDeletionBy">;
|
|
6
6
|
export type DeleteDataframe = Pick<Dataframe, "markedForDeletionAt" | "markedForDeletionBy">;
|
|
@@ -211,7 +211,6 @@ export type TransferOwnershipResponse = {
|
|
|
211
211
|
success: boolean;
|
|
212
212
|
};
|
|
213
213
|
export type InstallNewWorkspaceVersionRequest = {
|
|
214
|
-
requestedBy: PerformedBy;
|
|
215
214
|
projectId: string;
|
|
216
215
|
prevBuildId: string | null;
|
|
217
216
|
workspaceVersion: string;
|
|
@@ -223,7 +222,6 @@ export type InstallNewWorkspaceVersionResponse = {
|
|
|
223
222
|
buildId: string;
|
|
224
223
|
};
|
|
225
224
|
export type InstallFrontendDependenciesRequest = {
|
|
226
|
-
requestedBy: PerformedBy;
|
|
227
225
|
projectId: string;
|
|
228
226
|
prevBuildId: string | null;
|
|
229
227
|
prevFrontendPackagesId: string | null;
|
|
@@ -251,7 +249,6 @@ export type InstallFrontendDependenciesResponse = {
|
|
|
251
249
|
buildId: string;
|
|
252
250
|
};
|
|
253
251
|
export type InstallBackendDependenciesRequest = {
|
|
254
|
-
requestedBy: PerformedBy;
|
|
255
252
|
projectId: string;
|
|
256
253
|
prevBuildId: string | null;
|
|
257
254
|
prevBackendPackagesId: string | null;
|