@databutton/firebase-types 1.91.28 → 1.91.29
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.
|
@@ -59,6 +59,7 @@ export var CollectionName;
|
|
|
59
59
|
CollectionName["REQUIREMENTS"] = "requirements";
|
|
60
60
|
CollectionName["RUNS"] = "runs";
|
|
61
61
|
CollectionName["READ_LOG_RECORDS"] = "read-log-records";
|
|
62
|
+
CollectionName["RIFF_MIGRATIONS"] = "riff-migrations";
|
|
62
63
|
CollectionName["SCHEDULES"] = "schedules";
|
|
63
64
|
CollectionName["SCREENSHOTS"] = "screenshots";
|
|
64
65
|
CollectionName["SEQUENCES"] = "sequences";
|
|
@@ -736,8 +736,9 @@ export interface McpExtensionConfig {
|
|
|
736
736
|
apiKeyId: string;
|
|
737
737
|
})[];
|
|
738
738
|
}
|
|
739
|
+
export type SecretRefEnv = "admin" | "app" | "dev" | "prod";
|
|
739
740
|
export interface SecretRef {
|
|
740
|
-
env?:
|
|
741
|
+
env?: SecretRefEnv;
|
|
741
742
|
name: string;
|
|
742
743
|
}
|
|
743
744
|
export interface NeonDatabaseExtensionConfig {
|
|
@@ -1079,12 +1080,19 @@ export interface CompanyKnowledgeBase {
|
|
|
1079
1080
|
brandPositioningAndMessaging: string | null;
|
|
1080
1081
|
customerSuccessAndRetentionStrategy: string | null;
|
|
1081
1082
|
}
|
|
1083
|
+
export type RiffMigrationState<T> = {
|
|
1084
|
+
startedAt: Timestamp | null;
|
|
1085
|
+
succeededAt: Timestamp | null;
|
|
1086
|
+
failedAt: Timestamp | null;
|
|
1087
|
+
data?: T;
|
|
1088
|
+
};
|
|
1082
1089
|
export interface Project {
|
|
1083
1090
|
createdAt: Timestamp;
|
|
1084
1091
|
createdBy?: PerformedBy;
|
|
1085
1092
|
createdFromProjectTemplateId?: string | null;
|
|
1086
1093
|
createdFromProjectPlanId?: string | null;
|
|
1087
1094
|
variant: ProjectVariant;
|
|
1095
|
+
migratedFromDatabutton?: boolean;
|
|
1088
1096
|
startingPrompt?: string | null;
|
|
1089
1097
|
startingPointGeneratedBy?: PerformedBy | null;
|
|
1090
1098
|
extensions?: ProjectExtensions;
|