@builder.io/ai-utils 0.76.1 → 0.76.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.76.1",
3
+ "version": "0.76.2",
4
4
  "description": "Builder.io AI utils",
5
5
  "files": [
6
6
  "src"
package/src/codegen.d.ts CHANGED
@@ -3967,6 +3967,7 @@ export interface WorkspaceFolder {
3967
3967
  backupMetadata?: BackupMetadata;
3968
3968
  initializationCommand?: string;
3969
3969
  recommendedRoot?: string;
3970
+ authHeader?: string;
3970
3971
  }
3971
3972
  export interface WorkspaceConfiguration {
3972
3973
  agentsMD?: string;
package/src/projects.d.ts CHANGED
@@ -223,6 +223,7 @@ export interface GitConfig {
223
223
  url: string;
224
224
  provider: GitProvider | "unknown";
225
225
  token: string | undefined;
226
+ authHeader?: string;
226
227
  }
227
228
  export type GitConfigs = Record<string, GitConfig>;
228
229
  export declare const EXAMPLE_REPOS: string[];