@databutton/firebase-types 1.72.116 → 1.73.0
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.
|
@@ -113,6 +113,14 @@ export type RestoreCommitResponse = {
|
|
|
113
113
|
componentsRestored: ComponentWithCodeBlock[];
|
|
114
114
|
componentsSkipped: ComponentWithCodeBlock[];
|
|
115
115
|
};
|
|
116
|
+
export type CloneAppRequest = {
|
|
117
|
+
projectId: string;
|
|
118
|
+
newAppName?: string;
|
|
119
|
+
addUsersAsCollaborators?: string[];
|
|
120
|
+
};
|
|
121
|
+
export type CloneAppResponse = {
|
|
122
|
+
projectUrl: string;
|
|
123
|
+
};
|
|
116
124
|
export type GetSignedDownloadUrlRequest = {
|
|
117
125
|
projectId: string;
|
|
118
126
|
fileType: "datafile" | "dataframe";
|