@databutton/firebase-types 1.175.0 → 1.176.1

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.
@@ -1223,11 +1223,9 @@ export interface ProjectMigrationRecord {
1223
1223
  }
1224
1224
  export type ProjectVariant = "beyond-streamlit" | "riff";
1225
1225
  /**
1226
- * Known agent type tags the platform gates specific behavior on (e.g. the
1227
- * orchestrator selecting per-agent-type tool variants for
1228
- * "order-confirmation-agent"). Not a closed set projects may carry other
1229
- * ad-hoc values (e.g. per-customer agents identified only via agentSpecUrl),
1230
- * so this stays open with a string fallback rather than a strict union.
1226
+ * The agent's SKU, as named in the agent catalogue one level more specific
1227
+ * than {@link SpecialProjectType}, which gives the shape: several SKUs are all
1228
+ * operational agents. Open on purpose; not every SKU is listed.
1231
1229
  */
1232
1230
  export type ProjectAgentType = "order-confirmation-agent" | "supplier-communications-agent" | (string & {});
1233
1231
  export interface IntegrationPackages {
@@ -1625,7 +1623,7 @@ export interface Project {
1625
1623
  githubUrl?: string;
1626
1624
  /** URL to the agent type spec document (e.g. riff-agent-docs/agents/supplier-communications-agent.md). */
1627
1625
  agentSpecUrl?: string;
1628
- /** Agent type tag identifying which kind of agent this project implements (e.g. "supplier-communications-agent"). */
1626
+ /** The agent's SKU see {@link ProjectAgentType}. */
1629
1627
  agentType?: ProjectAgentType;
1630
1628
  isShowcase?: boolean;
1631
1629
  last_deployed?: Timestamp;
@@ -551,6 +551,7 @@ export type GenerateUsageReportResponse = {
551
551
  timestamp: string;
552
552
  projectId: string;
553
553
  userId: string;
554
+ type: string;
554
555
  credits: number;
555
556
  }[];
556
557
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.175.0",
3
+ "version": "1.176.1",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {