@databutton/firebase-types 1.78.45 → 1.78.47

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.
@@ -915,10 +915,7 @@ export interface Integration {
915
915
  documentationUrl: string | null;
916
916
  createdBy: PerformedBy;
917
917
  lastUpdatedBy: PerformedBy;
918
- credentials: {
919
- type: "api-key";
920
- key: string;
921
- }[];
918
+ credentials: string[];
922
919
  /**
923
920
  * Example code snippet to test if the integration is working
924
921
  */
@@ -978,15 +975,15 @@ export interface Project {
978
975
  isShowcase?: boolean;
979
976
  last_deployed?: Timestamp;
980
977
  schema?: "2022-12-07" | "2022-08-22" | null;
981
- deployIsInProgress?: boolean;
982
- deployFinishedAt?: Timestamp;
983
- deployCurrentDeployedId?: string;
984
- deployLastDeploymentSuccess?: boolean;
985
978
  commitCounter?: number;
986
979
  currentBuildId?: string | null;
987
980
  currentBuildCommitId?: string | null;
988
981
  currentDeploymentId?: string | null;
989
982
  currentDeploymentCommitId?: string | null;
983
+ ongoingBuildId?: string | null;
984
+ ongoingDeploymentId?: string | null;
985
+ lastFailedBuildId?: string | null;
986
+ lastFailedDeploymentId?: string | null;
990
987
  serviceCreationStartedAt?: Timestamp;
991
988
  serviceCreationSucceededAt?: Timestamp;
992
989
  serviceCreationFailedAt?: Timestamp;
@@ -1153,8 +1150,6 @@ export interface ProjectTemplate {
1153
1150
  extensions?: ProjectExtensions;
1154
1151
  annotations?: Record<string, string>;
1155
1152
  guidelines?: ProjectGuidelines;
1156
- isExample?: boolean;
1157
- deployedToUrl?: string | null;
1158
1153
  clonableBy?: "all" | "selected" | "owner";
1159
1154
  selectedUsersAllowedToClone?: string[];
1160
1155
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.78.45",
3
+ "version": "1.78.47",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {