@databutton/firebase-types 1.159.1 → 1.159.3

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.
@@ -2667,6 +2667,13 @@ export interface AgentSkillBase {
2667
2667
  description: string;
2668
2668
  content: string;
2669
2669
  availability: "draft" | "preview" | "active";
2670
+ /**
2671
+ * Optional builder type filter for platform skills.
2672
+ * - "agent": only visible in agent builder (agentBuilderTemplate projects)
2673
+ * - "app": only visible in app builder
2674
+ * - null: defaults to app builder (backwards compatible)
2675
+ */
2676
+ type?: "app" | "agent" | null;
2670
2677
  createdBy: PerformedBy;
2671
2678
  lastUpdatedBy: PerformedBy;
2672
2679
  markedForDeletionBy: PerformedBy | null;
@@ -2828,7 +2835,7 @@ export interface AgentImprovement {
2828
2835
  sessionId: string | null;
2829
2836
  taskId: string | null;
2830
2837
  discussionSessionId: string | null;
2831
- source: "agent_proactive" | "user_requested" | "user_manual";
2838
+ source: "agent_proactive" | "user_requested" | "user_manual" | null;
2832
2839
  userId: string | null;
2833
2840
  }
2834
2841
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.159.1",
3
+ "version": "1.159.3",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {