@databutton/firebase-types 1.84.10 → 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.
|
@@ -23,6 +23,7 @@ export var CollectionName;
|
|
|
23
23
|
CollectionName["DEPLOYMENT_REQUESTS"] = "deployment-requests";
|
|
24
24
|
CollectionName["DEPLOYMENTS"] = "deployments";
|
|
25
25
|
CollectionName["DEVRUNS"] = "devruns";
|
|
26
|
+
CollectionName["PROJECT_PLANS"] = "project-plans";
|
|
26
27
|
CollectionName["DOMAINS"] = "domains";
|
|
27
28
|
CollectionName["EVENTS"] = "events";
|
|
28
29
|
CollectionName["FEATURE_FLAGS"] = "feature-flags";
|
|
@@ -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
|
/**
|
|
@@ -871,6 +877,7 @@ export interface IntegrationTemplate {
|
|
|
871
877
|
semVerVersion: string;
|
|
872
878
|
managedBy: "riff" | "community";
|
|
873
879
|
logoUrl?: string;
|
|
880
|
+
aliases?: string[];
|
|
874
881
|
/**
|
|
875
882
|
* Short description of the integration
|
|
876
883
|
* Ment for the user to understand what the integration does
|
|
@@ -1914,7 +1921,15 @@ export interface ProjectPlan {
|
|
|
1914
1921
|
title: string;
|
|
1915
1922
|
description: string;
|
|
1916
1923
|
features: string[];
|
|
1917
|
-
|
|
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[];
|
|
1918
1933
|
domains: string[];
|
|
1919
1934
|
previewComponentCode: string | null;
|
|
1920
1935
|
projectTemplateId: string;
|