@databutton/firebase-types 1.15.32 → 1.16.1

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.
@@ -128,8 +128,6 @@ export interface MultipageAppPage {
128
128
  hidden: boolean;
129
129
  /**
130
130
  * Used for ordering pages in the navbar.
131
- *
132
- * TODO: Figure out if this should be stored at the multipage app level
133
131
  */
134
132
  sequence: number;
135
133
  }
@@ -142,6 +140,7 @@ export interface App {
142
140
  variant: "streamlit";
143
141
  markedForDeletionAt: Timestamp | null;
144
142
  markedForDeletionBy?: PerformedBy | null;
143
+ markedForDeletionReason?: string;
145
144
  shortUrl: string;
146
145
  isPublic?: boolean;
147
146
  category: string | null;
@@ -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.15.32",
3
+ "version": "1.16.1",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {
@@ -65,7 +65,7 @@
65
65
  "uuid": "8.3.2"
66
66
  },
67
67
  "devDependencies": {
68
- "@firebase/rules-unit-testing": "2.0.5",
68
+ "@firebase/rules-unit-testing": "2.0.7",
69
69
  "@sentry/types": "7.31.0",
70
70
  "@types/analytics-node": "3.1.10",
71
71
  "@types/inquirer": "9.0.3",