@databutton/firebase-types 1.91.27 → 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.
@@ -58,6 +58,7 @@ export declare enum CollectionName {
58
58
  REQUIREMENTS = "requirements",
59
59
  RUNS = "runs",
60
60
  READ_LOG_RECORDS = "read-log-records",
61
+ RIFF_MIGRATIONS = "riff-migrations",
61
62
  SCHEDULES = "schedules",
62
63
  SCREENSHOTS = "screenshots",
63
64
  SEQUENCES = "sequences",
@@ -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?: "admin" | "app" | "dev" | "prod";
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;
@@ -154,6 +154,7 @@ export type DeactivateUserResponse = {
154
154
  success: boolean;
155
155
  };
156
156
  export type CloneAppResponse = {
157
+ projectId: string;
157
158
  projectUrl: string;
158
159
  };
159
160
  export type GetSignedDownloadUrlRequest = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.91.27",
3
+ "version": "1.91.29",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {