@databutton/firebase-types 1.17.34 → 1.17.35
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.
|
@@ -382,6 +382,11 @@ export interface ProjectTemplateApp {
|
|
|
382
382
|
code: string;
|
|
383
383
|
screenshot: string | null;
|
|
384
384
|
}
|
|
385
|
+
export interface ProjectTemplatePage {
|
|
386
|
+
name: string;
|
|
387
|
+
code: string;
|
|
388
|
+
screenshot: string | null;
|
|
389
|
+
}
|
|
385
390
|
export interface ProjectTemplate {
|
|
386
391
|
createdBy: PerformedBy;
|
|
387
392
|
hasDeletionProtection?: boolean;
|
|
@@ -394,10 +399,7 @@ export interface ProjectTemplate {
|
|
|
394
399
|
markedForDeletionBy: PerformedBy | null;
|
|
395
400
|
description: string | null;
|
|
396
401
|
apps: ProjectTemplateApp[];
|
|
397
|
-
multipageAppPages?:
|
|
398
|
-
name: string;
|
|
399
|
-
code: string;
|
|
400
|
-
}[];
|
|
402
|
+
multipageAppPages?: ProjectTemplatePage[];
|
|
401
403
|
jobs: {
|
|
402
404
|
name: string;
|
|
403
405
|
code: string;
|