@databutton/firebase-types 1.159.2 → 1.160.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.
|
@@ -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;
|
|
@@ -103,7 +103,7 @@ export type AdminAddCreditsResult = {
|
|
|
103
103
|
};
|
|
104
104
|
export type AdminSetAccountTypePayload = {
|
|
105
105
|
customerId: string;
|
|
106
|
-
accountType: "internal" | "enterprise" | "enterprise_trial";
|
|
106
|
+
accountType: "internal" | "enterprise" | "enterprise_trial" | "delivery";
|
|
107
107
|
};
|
|
108
108
|
export type AdminSetAccountTypeResult = {
|
|
109
109
|
success: boolean;
|
|
@@ -590,7 +590,7 @@ export type ReviewApprovalRequestResponse = {
|
|
|
590
590
|
export type CreateTeamAccountRequest = {
|
|
591
591
|
name: string;
|
|
592
592
|
publicUsername?: string;
|
|
593
|
-
teamType?: "internal" | "enterprise" | "enterprise_trial";
|
|
593
|
+
teamType?: "internal" | "enterprise" | "enterprise_trial" | "delivery";
|
|
594
594
|
parentId?: string;
|
|
595
595
|
inheritParentSso?: boolean;
|
|
596
596
|
};
|