@databutton/firebase-types 1.98.4 → 1.98.5

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.
@@ -1065,6 +1065,7 @@ export interface IntegrationTemplateSummary {
1065
1065
  managedBy: "riff" | "riff-custom" | "community";
1066
1066
  apiVersion?: IntegrationApiVersion;
1067
1067
  enabledForAccountIds?: string[];
1068
+ needsGatewayAppConnection?: boolean;
1068
1069
  aliases?: {
1069
1070
  name: string;
1070
1071
  displayName?: string;
@@ -1101,6 +1102,10 @@ export interface IntegrationTemplateVersion {
1101
1102
  * Any important info for the agent to handle a upgrade */
1102
1103
  upgradeInfo?: string;
1103
1104
  }
1105
+ export interface GatewayIntegrationMetadata {
1106
+ projectId: string;
1107
+ deployedApiVersion: string | null;
1108
+ }
1104
1109
  /**
1105
1110
  * Installed integration (account or project level)
1106
1111
  * Stored at:
@@ -1126,6 +1131,10 @@ export interface Integration {
1126
1131
  ref: string;
1127
1132
  }[];
1128
1133
  installedScopes?: IntegrationScope[];
1134
+ gatewayMetadata?: GatewayIntegrationMetadata;
1135
+ }
1136
+ export interface ApiVersion {
1137
+ openApiArtifactRef: string;
1129
1138
  }
1130
1139
  /**
1131
1140
  * Integration learnings (account or project level)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.98.4",
3
+ "version": "1.98.5",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {