@builder.io/ai-utils 0.11.28 → 0.11.31
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 +9 -0
- package/src/organization.d.ts +2 -0
package/package.json
CHANGED
package/src/codegen.d.ts
CHANGED
|
@@ -904,6 +904,7 @@ export interface WorkspaceFolder {
|
|
|
904
904
|
originalRepoUrl?: string;
|
|
905
905
|
repoUrl?: string;
|
|
906
906
|
repoName?: string;
|
|
907
|
+
resetGit?: boolean;
|
|
907
908
|
branchName?: string;
|
|
908
909
|
backupMetadata?: BackupMetadata;
|
|
909
910
|
initializationCommand?: string;
|
|
@@ -1271,6 +1272,13 @@ export interface SetupRequirement {
|
|
|
1271
1272
|
tool: string;
|
|
1272
1273
|
version?: string;
|
|
1273
1274
|
}
|
|
1275
|
+
export interface GuessedSettings {
|
|
1276
|
+
id: string;
|
|
1277
|
+
setupCommand: string;
|
|
1278
|
+
devCommand: string;
|
|
1279
|
+
setupDependencies: SetupDependency[];
|
|
1280
|
+
autoDetectDevServer: boolean;
|
|
1281
|
+
}
|
|
1274
1282
|
export interface RepoMetrics {
|
|
1275
1283
|
languages: LanguageInfo[];
|
|
1276
1284
|
isEmpty: boolean;
|
|
@@ -1282,5 +1290,6 @@ export interface RepoMetrics {
|
|
|
1282
1290
|
buildTools: string[];
|
|
1283
1291
|
environmentVariables?: EnvVariableInfo[];
|
|
1284
1292
|
possibleMonorepoRoots?: string[];
|
|
1293
|
+
guessedSettings?: GuessedSettings;
|
|
1285
1294
|
errors?: string[];
|
|
1286
1295
|
}
|
package/src/organization.d.ts
CHANGED
|
@@ -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[];
|