@builder.io/ai-utils 0.11.27 → 0.11.30

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.11.27",
3
+ "version": "0.11.30",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -1271,6 +1271,13 @@ export interface SetupRequirement {
1271
1271
  tool: string;
1272
1272
  version?: string;
1273
1273
  }
1274
+ export interface GuessedSettings {
1275
+ id: string;
1276
+ setupCommand: string;
1277
+ devCommand: string;
1278
+ setupDependencies: SetupDependency[];
1279
+ autoDetectDevServer: boolean;
1280
+ }
1274
1281
  export interface RepoMetrics {
1275
1282
  languages: LanguageInfo[];
1276
1283
  isEmpty: boolean;
@@ -1282,5 +1289,6 @@ export interface RepoMetrics {
1282
1289
  buildTools: string[];
1283
1290
  environmentVariables?: EnvVariableInfo[];
1284
1291
  possibleMonorepoRoots?: string[];
1292
+ guessedSettings?: GuessedSettings;
1285
1293
  errors?: string[];
1286
1294
  }
@@ -27,6 +27,7 @@ interface OrganizationSettings {
27
27
  githubEnterpriseSetupValue?: GithubEnterpriseSetupValue;
28
28
  bitbucketEnterprisePAT?: BitbucketEnterprisePAT;
29
29
  useProxy?: boolean;
30
+ fusionShareableUrlSuffix?: string;
30
31
  }
31
32
  interface RoleOptions {
32
33
  read?: boolean;
@@ -40,6 +41,7 @@ interface RoleOptions {
40
41
  editLayers?: boolean;
41
42
  editContentPriority?: boolean;
42
43
  editFolders?: boolean;
44
+ indexDesignSystems?: boolean;
43
45
  }
44
46
  interface RoleEnvironment {
45
47
  pushAllowedOrgIds?: string[];
package/src/projects.d.ts CHANGED
@@ -431,7 +431,7 @@ export interface CreateProjectOptions {
431
431
  name: string;
432
432
  repoFullName: string;
433
433
  repoProvider: string;
434
- repoProtocol: string;
434
+ repoProtocol?: string;
435
435
  repoDescription?: string;
436
436
  repoPrivate: boolean;
437
437
  repoUrl: string;