@databutton/firebase-types 1.84.11 → 1.84.12

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.
@@ -146,6 +146,12 @@ export interface Profile {
146
146
  earlyAccessChangedAt?: Timestamp;
147
147
  earlyAccess?: boolean;
148
148
  admin?: boolean;
149
+ /**
150
+ * Flag to indicate if the user has logged in to Riff
151
+ * to be able to detect first logins to Riff for existing Databutton users
152
+ */
153
+ isRiffUser?: boolean;
154
+ isRiffUserSince?: Timestamp;
149
155
  referredAsCollaboratorBy?: PerformedBy | null;
150
156
  referredAsViewerBy?: PerformedBy | null;
151
157
  /**
@@ -1915,7 +1921,15 @@ export interface ProjectPlan {
1915
1921
  title: string;
1916
1922
  description: string;
1917
1923
  features: string[];
1918
- integrations: string[];
1924
+ /**
1925
+ * Hidden instructions that we can attach to featured project plans to guide the agent on how to use the project plan.
1926
+ */
1927
+ hiddenInstructions: string | null;
1928
+ integrations: {
1929
+ name: string;
1930
+ comment: string;
1931
+ }[];
1932
+ integrationNames: string[];
1919
1933
  domains: string[];
1920
1934
  previewComponentCode: string | null;
1921
1935
  projectTemplateId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.84.11",
3
+ "version": "1.84.12",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {