@databutton/firebase-types 1.170.0 → 1.171.0
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.
|
@@ -1222,6 +1222,14 @@ export interface ProjectMigrationRecord {
|
|
|
1222
1222
|
migratedAt: Timestamp;
|
|
1223
1223
|
}
|
|
1224
1224
|
export type ProjectVariant = "beyond-streamlit" | "riff";
|
|
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.
|
|
1231
|
+
*/
|
|
1232
|
+
export type ProjectAgentType = "order-confirmation-agent" | "supplier-communications-agent" | (string & {});
|
|
1225
1233
|
export interface IntegrationPackages {
|
|
1226
1234
|
npmPackages: {
|
|
1227
1235
|
dependencies: {
|
|
@@ -1611,7 +1619,7 @@ export interface Project {
|
|
|
1611
1619
|
/** URL to the agent type spec document (e.g. riff-agent-docs/agents/supplier-communications-agent.md). */
|
|
1612
1620
|
agentSpecUrl?: string;
|
|
1613
1621
|
/** Agent type tag identifying which kind of agent this project implements (e.g. "supplier-communications-agent"). */
|
|
1614
|
-
agentType?:
|
|
1622
|
+
agentType?: ProjectAgentType;
|
|
1615
1623
|
isShowcase?: boolean;
|
|
1616
1624
|
last_deployed?: Timestamp;
|
|
1617
1625
|
schema?: "2022-12-07" | "2022-08-22" | null;
|