@databutton/firebase-types 1.56.2 → 1.56.3
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.
|
@@ -196,6 +196,22 @@ export interface MultipageApp {
|
|
|
196
196
|
*/
|
|
197
197
|
activeThemeId: string;
|
|
198
198
|
}
|
|
199
|
+
export interface Page {
|
|
200
|
+
/**
|
|
201
|
+
* Name of the page
|
|
202
|
+
*/
|
|
203
|
+
name: string;
|
|
204
|
+
/**
|
|
205
|
+
* Slug for the page. Used for URLs
|
|
206
|
+
*/
|
|
207
|
+
slug: string;
|
|
208
|
+
/**
|
|
209
|
+
* Ref to the code block representing this page
|
|
210
|
+
*/
|
|
211
|
+
codeBlockRef: string;
|
|
212
|
+
createdBy: PerformedBy;
|
|
213
|
+
markedForDeletionBy: PerformedBy | null;
|
|
214
|
+
}
|
|
199
215
|
/**
|
|
200
216
|
* Subcollection under multipage-apps
|
|
201
217
|
*/
|
|
@@ -468,6 +484,7 @@ export interface Project {
|
|
|
468
484
|
createdAt: Timestamp;
|
|
469
485
|
createdBy?: PerformedBy;
|
|
470
486
|
createdFromProjectTemplateId?: string | null;
|
|
487
|
+
variant?: "beyond-streamlit" | "streamlit";
|
|
471
488
|
lifeStage: ProjectLifeStage;
|
|
472
489
|
lifeStageUpdatedBy: PerformedBy;
|
|
473
490
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@databutton/firebase-types",
|
|
3
|
-
"version": "1.56.
|
|
3
|
+
"version": "1.56.3",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"@types/inquirer": "9.0.3",
|
|
80
80
|
"@types/jest": "29.5.5",
|
|
81
81
|
"@types/lodash": "4.14.199",
|
|
82
|
-
"@types/node": "18.18.
|
|
82
|
+
"@types/node": "18.18.4",
|
|
83
83
|
"@types/uuid": "8.3.4",
|
|
84
84
|
"ansi-escapes": "6.2.0",
|
|
85
85
|
"archiver": "^5.3.1",
|