@builder.io/ai-utils 0.75.3 → 0.75.4
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.
- package/package.json +1 -1
- package/src/codegen.d.ts +0 -2
- package/src/codegen.js +1 -1
- package/src/messages.d.ts +2 -0
package/package.json
CHANGED
package/src/codegen.d.ts
CHANGED
|
@@ -4329,7 +4329,6 @@ export interface LaunchServerStatus {
|
|
|
4329
4329
|
projectId?: string;
|
|
4330
4330
|
detectedServerUrl?: string;
|
|
4331
4331
|
httpClients: number;
|
|
4332
|
-
_attemptDryRunBackupOutcome?: string;
|
|
4333
4332
|
workingDirectory?: string;
|
|
4334
4333
|
fusionConfig?: FusionConfig;
|
|
4335
4334
|
fusionEnvironment: "cloud" | "cloud-v2" | "unknown";
|
|
@@ -4374,7 +4373,6 @@ export interface FusionStatus {
|
|
|
4374
4373
|
machine: MachineConfig | undefined;
|
|
4375
4374
|
projectId: string | undefined;
|
|
4376
4375
|
detectedServerUrl: string | undefined;
|
|
4377
|
-
_attemptDryRunBackupOutcome: string | undefined;
|
|
4378
4376
|
workingDirectory: string | undefined;
|
|
4379
4377
|
fusionEnvironment: "cloud" | "cloud-v2" | "unknown";
|
|
4380
4378
|
containerState: "idle" | "busy";
|
package/src/codegen.js
CHANGED
|
@@ -662,7 +662,7 @@ export const RecordFrameToolInputSchema = z
|
|
|
662
662
|
description: "Optional longer description providing context about what this frame shows.",
|
|
663
663
|
}),
|
|
664
664
|
pr_highlight: z.boolean().optional().meta({
|
|
665
|
-
description: "Set true to mark this as a 'verified screenshot' worth showing in the PR description —
|
|
665
|
+
description: "Set true to mark this as a 'verified screenshot' worth showing in the PR description — visual proof of how the fix/feature behaves. The title is the caption; `description` supports bullet points / multiple lines. Only flag a frame when it shows a GENUINELY DISTINCT UI state — never flag multiple shots of the same screen. For a single-screen change: flag exactly ONE frame and list ALL the changes as bullet points in `description`. For a multi-step flow: flag one frame per unique screen (e.g. step 1, 2, 3 — each a different UI). The first flagged frame is shown full-width as the hero, so make it the most representative.",
|
|
666
666
|
}),
|
|
667
667
|
})
|
|
668
668
|
.meta({ title: "RecordFrameToolInput" });
|
package/src/messages.d.ts
CHANGED
|
@@ -92,6 +92,7 @@ export interface MCPServerURLDefinition {
|
|
|
92
92
|
create_date?: number | null;
|
|
93
93
|
serverId: string;
|
|
94
94
|
disabled: boolean;
|
|
95
|
+
clientName?: string;
|
|
95
96
|
}
|
|
96
97
|
export interface MCPServerToolConfiguration {
|
|
97
98
|
allowed_tools?: Array<string> | null;
|
|
@@ -116,6 +117,7 @@ export interface MCPServerDoc<TCreateDate = unknown, TLegacyTokenExpiresAt = nev
|
|
|
116
117
|
createDate: TCreateDate;
|
|
117
118
|
provider?: string;
|
|
118
119
|
disabled?: boolean;
|
|
120
|
+
clientName: string | undefined;
|
|
119
121
|
tool_configuration?: MCPServerToolConfiguration | null;
|
|
120
122
|
oauthMetadata?: MCPServerOAuthMetadata | null;
|
|
121
123
|
authorizationToken?: string;
|