@databutton/firebase-types 1.98.3 → 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.
@@ -101,6 +101,7 @@ export declare enum AccountRole {
101
101
  BILLING = "billing"
102
102
  }
103
103
  export declare enum DatabuttonIdPrefix {
104
+ AGENT_SKILL = "ask",
104
105
  API_KEY = "dbtk",
105
106
  APP_DEPLOY = "ad",
106
107
  AUDIT_LOG = "aul",
@@ -105,6 +105,7 @@ export var AccountRole;
105
105
  })(AccountRole || (AccountRole = {}));
106
106
  export var DatabuttonIdPrefix;
107
107
  (function (DatabuttonIdPrefix) {
108
+ DatabuttonIdPrefix["AGENT_SKILL"] = "ask";
108
109
  DatabuttonIdPrefix["API_KEY"] = "dbtk";
109
110
  DatabuttonIdPrefix["APP_DEPLOY"] = "ad";
110
111
  DatabuttonIdPrefix["AUDIT_LOG"] = "aul";
@@ -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.3",
3
+ "version": "1.98.5",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {