@databutton/firebase-types 1.78.36 → 1.78.38

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.
@@ -889,6 +889,35 @@ export interface ProjectMigrationRecord {
889
889
  name: ProjectMigration;
890
890
  migratedAt: Timestamp;
891
891
  }
892
+ /**
893
+ * Collection of integrations that you can add to your project
894
+ */
895
+ export interface Integrations {
896
+ displayName: string;
897
+ version: string;
898
+ active: boolean;
899
+ /**
900
+ * Short description of the integration
901
+ * Ment for the user to understand what the integration does
902
+ */
903
+ description: string;
904
+ /**
905
+ * URL to the documentation for the integration
906
+ */
907
+ documentationUrl: string | null;
908
+ createdBy: PerformedBy;
909
+ lastUpdatedBy: PerformedBy;
910
+ credentials: {
911
+ type: "api-key";
912
+ key: string;
913
+ }[];
914
+ /**
915
+ * Example code snippet to test if the integration is working
916
+ */
917
+ healthCheck: {
918
+ codeSnippet: string;
919
+ } | null;
920
+ }
892
921
  export interface Project {
893
922
  createdAt: Timestamp;
894
923
  createdBy?: PerformedBy;
@@ -1305,7 +1334,7 @@ export type BuildV1 = {
1305
1334
  export type BuildV2 = {
1306
1335
  schema: "2025-03-14";
1307
1336
  createdBy: PerformedBy;
1308
- createdReason: "initial" | "workspace-upgrade" | "frontend-install" | "backend-install";
1337
+ createdReason: "initial" | "migration" | "workspace-upgrade" | "frontend-install" | "backend-install";
1309
1338
  eventRef: string | null;
1310
1339
  workspaceVersion: string;
1311
1340
  devxVersion: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.78.36",
3
+ "version": "1.78.38",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {