@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
|
-
*
|
|
1227
|
-
*
|
|
1228
|
-
*
|
|
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
|
-
/**
|
|
1626
|
+
/** The agent's SKU — see {@link ProjectAgentType}. */
|
|
1629
1627
|
agentType?: ProjectAgentType;
|
|
1630
1628
|
isShowcase?: boolean;
|
|
1631
1629
|
last_deployed?: Timestamp;
|