@databutton/firebase-types 1.16.0 → 1.16.2

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.
@@ -95,6 +95,12 @@ export type FeatureFlag = PartialRolloutFeatureFlag | OnOffFeatureFlag | Segment
95
95
  * Every project contains 1 multipage app which in turn contains 0-n pages.
96
96
  */
97
97
  export interface MultipageApp {
98
+ /**
99
+ * Name of the multipage app
100
+ *
101
+ * As of 2023-02-09 this is synced with the project and will equal the project name
102
+ */
103
+ displayName: string;
98
104
  /**
99
105
  * Autogenerated short-url for this multipage app (/v/something)
100
106
  */
@@ -19,3 +19,9 @@ export type CreateProjectRequest = {
19
19
  export type CreateProjectResponse = {
20
20
  projectId: string;
21
21
  };
22
+ export type MigrateViewsRequest = {
23
+ projectId: string;
24
+ };
25
+ export type MigrateViewsResponse = {
26
+ success: boolean;
27
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.16.0",
3
+ "version": "1.16.2",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {