@databutton/firebase-types 1.102.0 → 1.102.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.
|
@@ -2381,4 +2381,32 @@ export interface AccountAgentSkill extends AgentSkillBase {
|
|
|
2381
2381
|
export interface GlobalAgentSkill extends AgentSkillBase {
|
|
2382
2382
|
scope: "global";
|
|
2383
2383
|
}
|
|
2384
|
+
export interface TelemetryEvent {
|
|
2385
|
+
eventType: string;
|
|
2386
|
+
timestamp: number;
|
|
2387
|
+
provider: string;
|
|
2388
|
+
model: string;
|
|
2389
|
+
agentId: string;
|
|
2390
|
+
agentType: "main-agent" | "sub-agent";
|
|
2391
|
+
projectId: string;
|
|
2392
|
+
/**
|
|
2393
|
+
* Stable ID across the entire conversation (session ~= thread)
|
|
2394
|
+
*
|
|
2395
|
+
* For sub-agents this could possibly be tool call ID of tool call that started the session
|
|
2396
|
+
*/
|
|
2397
|
+
sessionId: string;
|
|
2398
|
+
/**
|
|
2399
|
+
* Stable ID for the current streak across all iterations (turn ~= streak)
|
|
2400
|
+
*/
|
|
2401
|
+
turnId: string;
|
|
2402
|
+
/**
|
|
2403
|
+
* Stable ID for the current iteration in the turn (turn ID + iteration number)
|
|
2404
|
+
*/
|
|
2405
|
+
iterationId: string | null;
|
|
2406
|
+
/**
|
|
2407
|
+
* Current iteration number
|
|
2408
|
+
*/
|
|
2409
|
+
iteration: number | null;
|
|
2410
|
+
meta: Record<string, string | number | boolean | null>;
|
|
2411
|
+
}
|
|
2384
2412
|
export {};
|